diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-05-29 13:35:13 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-04 23:58:29 +0200 |
commit | d0063e8975672714a6ae33f7e8175421c6b5d5c5 (patch) | |
tree | 8a8c4fcb85a34eb49ec8e00912efef7ab35521d1 /.travis.yml | |
parent | 5dd02864a844bcf6fe0018755ff261affdef3fea (diff) | |
download | haskell-d0063e8975672714a6ae33f7e8175421c6b5d5c5.tar.gz |
Make validate more quiet
* By default use V=0, and call the testsuite with VERBOSE=2, which we
did before only with validate --quiet. This disables printing the
test commands it runs.
* When --quiet is used, call the testsuite with VERBOSE=1. This
disables printing the '====> Scanning' lines, and doesn't print
which test is being run. So it only prints something when a test
accidentally prints to stdout or when it fails.
Don't set this option on Travis, as Travis will cancel a build if it
doesn't see any output for more than 10 minutes.
* When --quiet is used, set the new test option NO_PRINT_SUMMARY,
which skips printing the test summary. Only the list of unexpected
failures is printed, if there are any. Note that the full summary
can still be found in testsuite_summary.txt
* When --quiet is used, don't pass the `-v` flag to `ghc-pkg check`
* When --quiet is used, don't print the Oops! header. It shoud be
clear from the list of failing tests that something is wrong.
This is all done to get the most out of 30 lines of logfile. These changes can
be disabled later by simply not passing the --quiet flag to validate.
Differential Revision: https://phabricator.haskell.org/D942
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d2e961dbb4..dd5a648eda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,5 +34,6 @@ script: - echo 'DYNAMIC_GHC_PROGRAMS = NO' >> mk/validate.mk - echo 'GhcLibWays = v' >> mk/validate.mk - if [ "$DEBUG_STAGE" = "YES" ]; then echo 'GhcStage2HcOpts += -DDEBUG' >> mk/validate.mk; fi - # use --quiet, otherwise we hit log file limits on travis. - - CPUS=2 SKIP_PERF_TESTS=YES ./validate --fast --quiet + # Don't use --quiet, as it might cause the testsuite to not print output for + # over 10 minutes, causing Travis to kill our job. + - CPUS=2 SKIP_PERF_TESTS=YES ./validate --fast |