From 4c9f77462f401b08c4d244bdec327bd37d66c96a Mon Sep 17 00:00:00 2001 From: Jason Lowe-Power Date: Fri, 11 Sep 2020 11:32:05 -0700 Subject: [PATCH] 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 --- tests/gem5/learning_gem5/part1_test.py | 21 --------------------- 1 file changed, 21 deletions(-) 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',), -) - -- 2.30.2