mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:53:37 +03:00
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
This commit is contained in:
parent
8ed71fc4f7
commit
743ab72bf1
2 changed files with 20 additions and 1 deletions
|
|
@ -36,11 +36,17 @@ if [ "$T" = "coverage" ]; then
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue