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.
This commit is contained in:
Bobby R. Bruce
2024-09-23 11:30:58 -07:00
parent 87daf94c0e
commit 1a637e6d94

View File

@@ -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}",