diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2013-10-05 17:04:31 +0200 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2013-10-05 17:07:16 +0200 |
commit | 718e86b4751b0435097bdde46855e819cf4f7864 (patch) | |
tree | b1a6fbf85d3596966067004517636250416d9337 /testsuite/mk | |
parent | 3db765088ac7c919bdf283cb6263e2ceedf6bc27 (diff) | |
download | haskell-718e86b4751b0435097bdde46855e819cf4f7864.tar.gz |
Flag to test suite: SKIP_PERF_TESTS
More often than not the output of the performance tests is in the way,
rather than helping. This allows the use of `make SKIP_PERF_TESTS=YES`
to skip these tests. Fixes #8413
Diffstat (limited to 'testsuite/mk')
-rw-r--r-- | testsuite/mk/test.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk index 928e1e4af2..0cc3f21c8a 100644 --- a/testsuite/mk/test.mk +++ b/testsuite/mk/test.mk @@ -163,6 +163,10 @@ ifneq "$(VERBOSE)" "" RUNTEST_OPTS += --verbose=$(VERBOSE) endif +ifeq "$(SKIP_PERF_TESTS)" "YES" +RUNTEST_OPTS += --skip-perf-tests +endif + ifneq "$(CLEAN_ONLY)" "" RUNTEST_OPTS += -e clean_only=True else |