From: Daniel Stenberg Date: Tue, 9 Mar 2021 07:07:46 +0000 (+0100) Subject: travis: make torture tests skip TLS-SRP tests X-Git-Tag: curl-7_76_0~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9421eee915d7a1e438c34484b999d0964b02a038;p=thirdparty%2Fcurl.git travis: make torture tests skip TLS-SRP tests ... as it seems to often hang. Also: skip the "normal" tests as they're already run by many other builds. Closes #6705 --- diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 050eb0fdd0..85afa96182 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="!TLS-SRP" + make "TFLAGS=-n -e $tests" test-nonflaky make "TFLAGS=-n --shallow=40 -t $tests" test-nonflaky fi