]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
travis: make torture tests skip TLS-SRP tests
authorDaniel Stenberg <daniel@haxx.se>
Tue, 9 Mar 2021 07:07:46 +0000 (08:07 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 10 Mar 2021 09:29:28 +0000 (10:29 +0100)
... as it seems to often hang.

Also: skip the "normal" tests as they're already run by many other
builds.

Closes #6705

scripts/travis/script.sh

index 050eb0fdd0a55c39b70f2250102e5b460970c96c..85afa96182afd8d54e72e1e9d67689f76c296760 100755 (executable)
@@ -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="!TLS-SRP"
+  make "TFLAGS=-n -e $tests" test-nonflaky
   make "TFLAGS=-n --shallow=40 -t $tests" test-nonflaky
 fi