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
This commit is contained in:
Daniel Stenberg 2021-03-09 08:07:46 +01:00
parent b7e01382d6
commit 9421eee915
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 2 additions and 3 deletions

View File

@ -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