summaryrefslogtreecommitdiff
path: root/testsuite/mk
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2013-10-05 17:04:31 +0200
committerJoachim Breitner <mail@joachim-breitner.de>2013-10-05 17:07:16 +0200
commit718e86b4751b0435097bdde46855e819cf4f7864 (patch)
treeb1a6fbf85d3596966067004517636250416d9337 /testsuite/mk
parent3db765088ac7c919bdf283cb6263e2ceedf6bc27 (diff)
downloadhaskell-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.mk4
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