summaryrefslogtreecommitdiff
path: root/scripts/travis/script.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/travis/script.sh')
-rwxr-xr-xscripts/travis/script.sh8
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