tests,learning-gem5: Moved MIPS ISA test from part 1 to long
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>
This commit is contained in:
@@ -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 = [],
|
||||
valid_isas=('X86', 'RISCV', 'ARM', 'MIPS'),
|
||||
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 = [],
|
||||
length = constants.long_tag,
|
||||
valid_isas=('MIPS',),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user