Revert "tests: Fix garnet and memcheck tests to use X86"

This reverts commit b22ca02a65.
This commit is contained in:
Jason Lowe-Power
2023-12-20 15:32:36 -08:00
parent 7adaaa6f2a
commit bab8af44fb

View File

@@ -70,7 +70,7 @@ gem5_verify_config(
length=constants.long_tag,
)
x86_tests = [
null_tests = [
("garnet_synth_traffic", None, ["--sim-cycles", "5000000"]),
("memcheck", None, ["--maxtick", "2000000000", "--prefetchers"]),
(
@@ -122,7 +122,7 @@ x86_tests = [
("ruby_direct_test", None, ["--requests", "50000"]),
]
for test_name, basename_noext, args in x86_tests:
for test_name, basename_noext, args in null_tests:
if basename_noext == None:
basename_noext = test_name
gem5_verify_config(
@@ -133,8 +133,7 @@ for test_name, basename_noext, args in x86_tests:
config.base_dir, "configs", "example", basename_noext + ".py"
),
config_args=args,
valid_isas=(constants.x86_tag,),
protocol="MESI_Two_Level",
valid_isas=(constants.null_tag,),
valid_hosts=constants.supported_hosts,
length=constants.long_tag,
)