diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-03-11 16:18:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-03-12 23:36:29 +0100 |
commit | 743ab72bf11a26275e98264b1bcec7b912aee395 (patch) | |
tree | d848beff84709109057bca793a0e70ea95437b95 /scripts | |
parent | 8ed71fc4f7116288da75ed85e21fe8c53f4cdfb2 (diff) | |
download | curl-743ab72bf11a26275e98264b1bcec7b912aee395.tar.gz |
travis: split "torture" into a separate "events" build as well
Run torture without FTP and reducing coverage to 20%
For some reason the torture tests now run a lot slower on travis and run
into the 50 minute limit all the time.
Closes #6728
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/script.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 85afa9618..9a35affea 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -38,9 +38,15 @@ fi if [ "$T" = "torture" ]; then ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 make + tests="!TLS-SRP !FTP" + make "TFLAGS=-n --shallow=20 -t $tests" test-nonflaky +fi + +if [ "$T" = "events" ]; then + ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 + make tests="!TLS-SRP" make "TFLAGS=-n -e $tests" test-nonflaky - make "TFLAGS=-n --shallow=40 -t $tests" test-nonflaky fi if [ "$T" = "debug" ]; then |