From 590daeb90152df9aee2525851d7332af790220ea Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 7 Sep 2021 11:44:45 -0700 Subject: [PATCH] learning-gem5,tests: Move Learning gem5 Part 3 to run nightly The Learning gem5 part 3 tests require the building of the X86_MSI binary. These are the only tests that require this protocol. Building this is not worth it to just run these tests. They've therefore been moved to be run nightly rather than as a pre-submit/kokoro test. Change-Id: If0cdd9c30a160a01cef5fcda8a5433ab2d6ac882 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/50027 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- tests/gem5/learning_gem5/part3_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/gem5/learning_gem5/part3_test.py b/tests/gem5/learning_gem5/part3_test.py index eb758afe5d..249951b7ec 100644 --- a/tests/gem5/learning_gem5/part3_test.py +++ b/tests/gem5/learning_gem5/part3_test.py @@ -43,6 +43,7 @@ gem5_verify_config( valid_isas=(constants.gcn3_x86_tag,), # dynamically linked valid_hosts=constants.target_host[constants.gcn3_x86_tag], + length=constants.long_tag, ) gem5_verify_config( @@ -53,4 +54,5 @@ gem5_verify_config( protocol = 'MSI', # Currently only x86 has the threads test valid_isas=(constants.gcn3_x86_tag,), + length=constants.long_tag, )