From 7753a02663edcd1a7751c5f955881edb49b4a158 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 2 Feb 2021 12:27:19 -0800 Subject: [PATCH] tests: Changed 'long' boot tests to X86 from GCN3_X86 We compile GCN3_X86 for the 'quick' tests, as a substitute for X86. We compile X86 as part of our nightly tests, along with the running of the 'long' tests. This leads to a needless duplicate compilation of the X86 isa during our nightly tests. Therefore, this commit removes GCN3_X86 for the 'long' tests (only the x86 boot tests are affected). Change-Id: Ifd8aaf0e7b8178c588ace33b27671d4ba9b353ed Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40415 Reviewed-by: Jason Lowe-Power Reviewed-by: Matt Sinclair Maintainer: Jason Lowe-Power Maintainer: Matt Sinclair Tested-by: kokoro --- tests/gem5/x86-boot-tests/test_linux_boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gem5/x86-boot-tests/test_linux_boot.py b/tests/gem5/x86-boot-tests/test_linux_boot.py index 62f82f916..542242514 100644 --- a/tests/gem5/x86-boot-tests/test_linux_boot.py +++ b/tests/gem5/x86-boot-tests/test_linux_boot.py @@ -60,7 +60,7 @@ def test_boot(cpu_type, num_cpus, boot_type, host): '--num-cpus', num_cpus, '--boot-type', boot_type, ], - valid_isas = (constants.gcn3_x86_tag,), + valid_isas = (constants.x86_tag,), valid_hosts = host, length = constants.long_tag, ) -- 2.30.2