diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-03-09 08:07:46 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-03-10 10:29:28 +0100 |
commit | 9421eee915d7a1e438c34484b999d0964b02a038 (patch) | |
tree | 436ed10aa400b2ff536b822c478259faa205fed7 | |
parent | b7e01382d65b4ba6b5b14b24e6ba4319fd9abe20 (diff) | |
download | curl-9421eee915d7a1e438c34484b999d0964b02a038.tar.gz |
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
-rwxr-xr-x | scripts/travis/script.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 050eb0fdd..85afa9618 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 |