From 091ba116ee7f4e6a1e1055c0145d46bc64c60e25 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 17 Aug 2021 18:11:08 -0700 Subject: [PATCH] ext,tests: Add 'very-long' tag for test length This new tag will be used to specify tests to run Weekly (with the 'long' tests for Nightly, and the 'quick' tests for Kokoro/presubmit). Change-Id: I088c2ef36cb14746e581eac5b1771f82250f2b98 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/49326 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- ext/testlib/configuration.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/testlib/configuration.py b/ext/testlib/configuration.py index 1fffab46ff..95800deb46 100644 --- a/ext/testlib/configuration.py +++ b/ext/testlib/configuration.py @@ -248,6 +248,7 @@ def define_constants(constants): constants.length_tag_type = 'length' constants.quick_tag = 'quick' constants.long_tag = 'long' + constants.very_long_tag = 'very-long' constants.host_isa_tag_type = 'host' constants.host_x86_64_tag = 'x86_64' @@ -272,6 +273,7 @@ def define_constants(constants): constants.length_tag_type: ( constants.quick_tag, constants.long_tag, + constants.very_long_tag, ), constants.host_isa_tag_type: ( constants.host_x86_64_tag,