From ebea8f560ff8a8e3ed98efbc2c5fb95596a37eca Mon Sep 17 00:00:00 2001 From: Mike Rapoport Date: Sun, 8 Nov 2020 09:50:23 +0200 Subject: [PATCH] ci: fix lazy-pages test selection The special characters in the test selection regexp should no be esaped for the regexp to work properly. Signed-off-by: Mike Rapoport --- scripts/ci/run-ci-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/run-ci-tests.sh b/scripts/ci/run-ci-tests.sh index 063921c6e..29a0524d2 100755 --- a/scripts/ci/run-ci-tests.sh +++ b/scripts/ci/run-ci-tests.sh @@ -174,7 +174,7 @@ fi LAZY_EXCLUDE="-x maps04 -x cmdlinenv00 -x maps007" -LAZY_TESTS='.*\(maps0\|uffd-events\|lazy-thp\|futex\|fork\).*' +LAZY_TESTS='.*(maps0|uffd-events|lazy-thp|futex|fork).*' LAZY_OPTS="-p 2 -T $LAZY_TESTS $LAZY_EXCLUDE $ZDTM_OPTS" # shellcheck disable=SC2086