tests: Disable failing tests until root cause determined

This should be a temporary change. Due to an issue, outlined here:
https://gem5.atlassian.net/browse/GEM5-1120, these tests have been
disabled. One of these tests, if not a combination of them, is causing a
timeout event to occur in the Nightly tests. They have therefore been
disabled until the exact cause of failure is established.

Change-Id: I4303e7b157dcf32a7879b014a9f5a88efa62b756
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/53504
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Bobby R. Bruce
2021-12-01 15:07:17 -08:00
parent a8cd6bce3f
commit 848746b094
2 changed files with 46 additions and 37 deletions

View File

@@ -140,37 +140,41 @@ test_boot(
#### The long (Nightly) tests #### #### The long (Nightly) tests ####
test_boot( # Due to Nightly test timeout issues, outlined here:
cpu="atomic", # https://gem5.atlassian.net/browse/GEM5-1120, these tests have been disabled
num_cpus=1, # until the exact error causing the Nightly tests to timeout is established.
cache_type="classic",
length=constants.long_tag,
)
test_boot( #test_boot(
cpu="timing", # cpu="atomic",
num_cpus=1, # num_cpus=1,
cache_type="mi_example", # cache_type="classic",
length=constants.long_tag, # length=constants.long_tag,
) #)
test_boot( #test_boot(
cpu="timing", # cpu="timing",
num_cpus=4, # num_cpus=1,
cache_type="mi_example", # cache_type="mi_example",
length=constants.long_tag, # length=constants.long_tag,
) #)
test_boot( #test_boot(
cpu="atomic", # cpu="timing",
num_cpus=4, # num_cpus=4,
cache_type="classic", # cache_type="mi_example",
length=constants.long_tag, # length=constants.long_tag,
) #)
test_boot( #test_boot(
cpu="o3", # cpu="atomic",
num_cpus=8, # num_cpus=4,
cache_type="mi_example", # cache_type="classic",
length=constants.long_tag, # length=constants.long_tag,
) #)
#test_boot(
# cpu="o3",
# num_cpus=8,
# cache_type="mi_example",
# length=constants.long_tag,
#)

View File

@@ -170,13 +170,18 @@ test_boot(
length=constants.long_tag, length=constants.long_tag,
) )
test_boot(
cpu="o3", # Due to Nightly test timeout issues, outlined here:
num_cpus=2, # https://gem5.atlassian.net/browse/GEM5-1120, this test has been disabled
mem_system="mesi_two_level", # until the exact error causing the Nightly tests to timeout is established.
boot_type="init",
length=constants.long_tag, #test_boot(
) # cpu="o3",
# num_cpus=2,
# mem_system="mesi_two_level",
# boot_type="init",
# length=constants.long_tag,
#)
#### The very-long (Weekly) tests #### #### The very-long (Weekly) tests ####