diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-17 14:31:07 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-08-17 15:43:33 +0200 |
commit | e367e2729ecf2b66b81680fe1b60bf1ef21880ed (patch) | |
tree | e46f66fd4014c5960e7312cbf6a98be68d9da03e /validate | |
parent | 744ff88537fa26bd4826ea35679fce04c65eee97 (diff) | |
download | haskell-e367e2729ecf2b66b81680fe1b60bf1ef21880ed.tar.gz |
Travis: prevent 10' no output, by setting VERBOSE=2
Diffstat (limited to 'validate')
-rwxr-xr-x | validate | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -33,6 +33,11 @@ Flags: THREADS=1 ./validate + You can also use environment variables to pass extra options to the + testsuite. For example: + + TEST='read001 read002' ./validate --testsuite-only --fast + EOF } @@ -260,10 +265,8 @@ FAST) ;; esac -if [ $be_quiet -eq 1 ]; then +if [ $be_quiet -eq 1 ] && [ -z $VERBOSE ]; then TEST_VERBOSITY="VERBOSE=1 NO_PRINT_SUMMARY=YES" -else - TEST_VERBOSITY="VERBOSE=2" fi $make $MAKE_TEST_TARGET stage=2 $BINDIST $TEST_VERBOSITY THREADS=$threads 2>&1 | tee testlog |