Skip to content

Commit eb6505e

Browse files
committed
TST More flexible testing filtering
1 parent 3a7ad9c commit eb6505e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ for testdir in tests/*; do
2121
if test -d "$testdir"; then
2222
# Run only tests with specified PREFIX
2323
# Useful to run only 'long-' tests or 'regression'
24-
if [[ "x$TEST_PREFIX" != "x" ]] && [[ "$testdir" != tests/${TEST_PREFIX}-* ]]; then
24+
if [[ "x$TEST_PREFIX" != "x" ]] && [[ "$testdir" != tests/${TEST_PREFIX}* ]]; then
2525
continue
2626
fi
2727
cur_ok=yes

0 commit comments

Comments
 (0)