diff --git a/tests/gem5/arm-boot-tests/test_linux_boot.py b/tests/gem5/arm-boot-tests/test_linux_boot.py index 9a6f67110e..6115bb29a5 100644 --- a/tests/gem5/arm-boot-tests/test_linux_boot.py +++ b/tests/gem5/arm-boot-tests/test_linux_boot.py @@ -185,49 +185,9 @@ test_boot( test_boot( cpu="atomic", - num_cpus=1, - mem_system="classic", - memory_class="SingleChannelDDR3_1600", - length=constants.long_tag, -) - -test_boot( - cpu="timing", - num_cpus=1, - mem_system="classic", - memory_class="SingleChannelDDR3_2133", - length=constants.long_tag, -) - -test_boot( - cpu="o3", - num_cpus=1, - mem_system="classic", - memory_class="DualChannelDDR3_1600", - length=constants.long_tag, -) - -test_boot( - cpu="timing", num_cpus=4, - mem_system="classic", - memory_class="HBM2Stack", - length=constants.long_tag, -) - -test_boot( - cpu="timing", - num_cpus=2, - mem_system="classic", - memory_class="DualChannelDDR4_2400", - length=constants.long_tag, -) - -test_boot( - cpu="timing", - num_cpus=2, mem_system="no_cache", - memory_class="DualChannelDDR4_2400", + memory_class="HBM2Stack", length=constants.long_tag, ) @@ -238,19 +198,3 @@ test_boot( memory_class="DualChannelDDR4_2400", length=constants.long_tag, ) - -test_boot( - cpu="timing", - num_cpus=2, - mem_system="mesi_two_level", - memory_class="DualChannelDDR4_2400", - length=constants.long_tag, -) - -test_boot( - cpu="timing", - num_cpus=2, - mem_system="mi_example", - memory_class="DualChannelDDR4_2400", - length=constants.long_tag, -)