2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 14:25:49 +00:00

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 <rppt@linux.ibm.com>
This commit is contained in:
Mike Rapoport
2020-11-08 09:50:23 +02:00
committed by Andrei Vagin
parent 20a83e77c9
commit ebea8f560f

View File

@@ -174,7 +174,7 @@ fi
LAZY_EXCLUDE="-x maps04 -x cmdlinenv00 -x maps007" 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" LAZY_OPTS="-p 2 -T $LAZY_TESTS $LAZY_EXCLUDE $ZDTM_OPTS"
# shellcheck disable=SC2086 # shellcheck disable=SC2086