From a7aea89d7463f5907cba75fcbbf2898c0ff79f5b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 18 Oct 2018 11:40:20 +0200 Subject: fixup disable tests for --disable-verbose builds --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2c6d2067..5998f4c2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,7 +60,7 @@ matrix: - os: linux compiler: gcc dist: trusty - env: T=normal C="--disable-verbose" CPPFLAGS="-Wno-variadic-macros" + env: T=normal C="--disable-verbose" CPPFLAGS="-Wno-variadic-macros" NOTESTS=1 - os: linux compiler: gcc dist: trusty @@ -300,7 +300,9 @@ script: if [ "$T" = "normal" ]; then ./configure --enable-warnings --enable-werror $C make && make examples - make test-nonflaky + if [ -z $NOTESTS ]; then + make test-nonflaky + fi if [ -n $CHECKSRC ]; then make checksrc fi -- cgit v1.2.1