Skip to content

Commit 9c49a81

Browse files
committed
Use find in test/runner for more reliability than Bash globs
1 parent 5eea778 commit 9c49a81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/runner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function log() {
99
}
1010

1111
error=0
12-
for test in ${0%/*}/{,**/}*_test*.sh; do
12+
for test in $(find "${0%/*}" | grep -E '_(test|tests).sh'); do
1313
log "Running $test ..."
1414
$test || error=1
1515
echo

0 commit comments

Comments
 (0)