diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2013-09-20 15:15:51 +0200 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2013-09-20 15:15:51 +0200 |
commit | 1e24696542cb4dc9fbb5186f4ecd7422ea3f6426 (patch) | |
tree | 40c0c6fc1f2baedc46915571dc59c326d097e74a /testsuite/README.md | |
parent | 33dfd925eac4f481dfeefadc6d801bb2d24daab0 (diff) | |
download | haskell-1e24696542cb4dc9fbb5186f4ecd7422ea3f6426.tar.gz |
Test driver: Implement different verbosities
Select verbosity with "make VERBOSE=n". Options so far:
n=0: No per-test output
n=1: Only failing test results
n=2: As above, plus progress information (names of all tests)
n=3: As aobve, plus commands called.
Default currently is n=3, although n=2 might be a nicer default.
Diffstat (limited to 'testsuite/README.md')
-rw-r--r-- | testsuite/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/README.md b/testsuite/README.md index 9b52e305a5..7620809dee 100644 --- a/testsuite/README.md +++ b/testsuite/README.md @@ -13,6 +13,9 @@ Commands to run testsuite: * Run a specific test: `make TEST=tc054` * Test a specific 'way': `make WAY=optllvm` * Test a specifc stage of GHC: `make stage=1` + * Set verbosity: `make VERBOSE=n` + where n=0: No per-test ouput, n=1: Only failures, + n=2: Progress output, n=3: Include commands called (default) * Pass in extra GHC options: `make EXTRA_HC_OPTS=-fvectorize` You can also change directory to a specific test folder to run that |