From: Jason Lowe-Power Date: Fri, 11 Sep 2020 18:32:05 +0000 (-0700) Subject: tests: Remove MIPS from Learning gem5 tests X-Git-Tag: v20.1.0.0~28 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c9f77462f401b08c4d244bdec327bd37d66c96a;p=gem5.git tests: Remove MIPS from Learning gem5 tests Change-Id: Iffd9f5da188cac26ac75a8109886c36789956959 Signed-off-by: Jason Lowe-Power Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/34415 Reviewed-by: mike upton Reviewed-by: Bobby R. Bruce Maintainer: Bobby R. Bruce Tested-by: kokoro --- diff --git a/tests/gem5/learning_gem5/part1_test.py b/tests/gem5/learning_gem5/part1_test.py index b57ba1757..f8363acf6 100644 --- a/tests/gem5/learning_gem5/part1_test.py +++ b/tests/gem5/learning_gem5/part1_test.py @@ -38,16 +38,6 @@ gem5_verify_config( 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', @@ -57,14 +47,3 @@ gem5_verify_config( 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',), -) -