From 1a637e6d94fa0fd0e45fb06694cabd76ceb9e67e Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Mon, 23 Sep 2024 11:30:58 -0700 Subject: [PATCH] tests: test_requires.py moved to very-long and drop risv This test required a lot of compilation for what it does. It is now moed to very-long/weekly and riscv has been dropped as arm and x86 are sufficient. --- tests/gem5/stdlib/test_requires.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/gem5/stdlib/test_requires.py b/tests/gem5/stdlib/test_requires.py index 3011180679..101b820896 100644 --- a/tests/gem5/stdlib/test_requires.py +++ b/tests/gem5/stdlib/test_requires.py @@ -40,15 +40,15 @@ length_map = { "sparc": constants.long_tag, "mips": constants.long_tag, "null": constants.long_tag, - "arm": constants.long_tag, - "x86": constants.long_tag, + "arm": constants.very_long_tag, + "x86": constants.very_long_tag, "power": constants.long_tag, "riscv": constants.long_tag, } for isa in isa_map.keys(): - if isa in ("x86", "arm", "riscv"): - # We only do these checks for X86, ARM, and RISCV to save compiling + if isa in ("x86", "arm"): + # We only do these checks for X86 and ARM to save compiling # other ISAs. gem5_verify_config( name=f"requires-isa-{isa}",