summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-03-09 08:07:46 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-03-09 08:08:32 +0100
commitbf2bb2ebdd6ddc15752071c82ccf885171f17363 (patch)
tree803338506de1a128836d7ac88ca0ee0edbde6eaa
parentec549aa6254b4f1b8bd612f973a5c44d20a4d20b (diff)
downloadcurl-bf2bb2ebdd6ddc15752071c82ccf885171f17363.tar.gz
travis: make torture tests skip test 320
... as it seems to often hang. Also: skip the "normal" tests as they're already run by many other builds.
-rwxr-xr-xscripts/travis/script.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh
index 050eb0fdd..126a5de59 100755
--- a/scripts/travis/script.sh
+++ b/scripts/travis/script.sh
@@ -38,9 +38,8 @@ fi
if [ "$T" = "torture" ]; then
./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2
make
- make TFLAGS=-n test-nonflaky
- make "TFLAGS=-n -e" test-nonflaky
- tests="1 200 300 500 700 800 900 1000 1100 1200 1302 1400 1502 3000"
+ tests="!320"
+ make "TFLAGS=-n -e $tests" test-nonflaky
make "TFLAGS=-n --shallow=40 -t $tests" test-nonflaky
fi