From 6b340470e01dc177767fae990cf19037202140b7 Mon Sep 17 00:00:00 2001 From: Tamar Shacked Date: Mon, 31 May 2021 21:27:41 +0300 Subject: [PATCH 545/584] tests: Excluded tests for unsupported components Quota and Tier are depricated from RHGS-3.5.5. Stop running regression tests for them. Label: DOWNSTREAM ONLY Signed-off-by: Tamar Shacked Change-Id: I3ca1aacba9a31129f5e68fcffdd80e69e51f7bcc --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index c835d93..5cc18b0 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -349,7 +349,7 @@ function run_tests() fi for t in $(find ${regression_testsdir}/tests -name '*.t' \ - | LC_COLLATE=C sort) ; do + | egrep -v "tier|quota" | LC_COLLATE=C sort) ; do old_cores=$(ls /*-*.core 2> /dev/null | wc -l) total_tests=$((total_tests+1)) if match $t "$@" ; then -- 1.8.3.1