From 7f062f2dcfa5511139476e1aef8db74f49566432 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 20 Nov 2018 17:50:05 -0600 Subject: Skip tests that don't have the executable bit set unless $TEST_ALL set. --- scripts/test.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/test.sh b/scripts/test.sh index 1e357173..1bf225aa 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -53,6 +53,7 @@ then else for i in "$TOPDIR"/tests/*.test do + [ -z "$TEST_ALL" ] && [ ! -x "$i" ] && continue if [ -z "$TEST_HOST" ] then do_test "$i" 1 -- cgit v1.2.3