tests,learning-gem5: Moved MIPS ISA test from part 1 to long
authorBobby R. Bruce <bbruce@ucdavis.edu>
Tue, 17 Mar 2020 17:11:57 +0000 (10:11 -0700)
committerBobby R. Bruce <bbruce@ucdavis.edu>
Fri, 20 Mar 2020 18:04:05 +0000 (18:04 +0000)
The learning gem5 part 1 tests were the only "quick" tests requiring the
MIPS ISA to be compilated. This is a big cost for two very simple tests.
The MIPS ISA tests for learning gem5 part 1 have been moved to the
"long" tests.

Change-Id: I694541b4c7ea84e91262f29c67fb5ec2bbbc6fec
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26844
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
tests/gem5/learning_gem5/part1_test.py

index a0ce56c68e8b6cea58e5caea091f8078305fd07b..b57ba175713ae23c5d3cbe6be199510319d81005 100644 (file)
@@ -28,19 +28,43 @@ from testlib import *
 
 config_path = joinpath(config.base_dir, 'configs', 'learning_gem5', 'part1')
 
+# The "quick" simple tests.
 gem5_verify_config(
     name='simple_test',
     verifiers = (),
     config=joinpath(config_path, 'simple.py'),
     config_args = [],
-    valid_isas=('X86', 'RISCV', 'ARM', 'MIPS'),
+    length = constants.quick_tag,
+    valid_isas=('X86', 'RISCV', 'ARM'),
 )
 
+# The "long" simple tests.
+gem5_verify_config(
+    name='simple_test',
+    verifiers = (),
+    config=joinpath(config_path, 'simple.py'),
+    config_args = [],
+    length = constants.long_tag,
+    valid_isas=('MIPS',),
+)
+
+# The "quick" two level tests.
+gem5_verify_config(
+    name='two_level_test',
+    verifiers = (),
+    config=joinpath(config_path, 'two_level.py'),
+    config_args = [],
+    length = constants.quick_tag,
+    valid_isas=('X86', 'RISCV', 'ARM'),
+)
+
+# The "long" two level tests.
 gem5_verify_config(
     name='two_level_test',
     verifiers = (),
     config=joinpath(config_path, 'two_level.py'),
     config_args = [],
-    valid_isas=('X86', 'RISCV', 'ARM', 'MIPS'),
+    length = constants.long_tag,
+    valid_isas=('MIPS',),
 )