summaryrefslogtreecommitdiff
path: root/testsuite/mk
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-06-12 09:37:13 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-06-14 23:10:08 -0400
commit503e830c3d01edc9db4e49e73841e45a20675a1e (patch)
treec0d2a25aa3b8ba24a266a2e9eaed52ebb80cda25 /testsuite/mk
parent5279dda861f6a5cc804be88dc5f0ff2442660149 (diff)
downloadhaskell-503e830c3d01edc9db4e49e73841e45a20675a1e.tar.gz
gitlab-ci: Lint testsuite for framework failures
This introduces a new lint job checking for framework failures and listing broken tests.
Diffstat (limited to 'testsuite/mk')
-rw-r--r--testsuite/mk/test.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk
index 6860974c54..be6b741751 100644
--- a/testsuite/mk/test.mk
+++ b/testsuite/mk/test.mk
@@ -81,7 +81,11 @@ endif
RUNTEST_OPTS += -e "ghc_compiler_always_flags='$(TEST_HC_OPTS)'"
-RUNTEST_OPTS += -e config.compiler_debugged=$(GhcDebugged)
+ifeq "$(GhcDebugged)" "YES"
+RUNTEST_OPTS += -e "config.compiler_debugged=True"
+else
+RUNTEST_OPTS += -e "config.compiler_debugged=False"
+endif
ifeq "$(GhcWithNativeCodeGen)" "YES"
RUNTEST_OPTS += -e ghc_with_native_codegen=True