diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-07 14:13:56 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-09 03:56:22 -0500 |
commit | ef2945254987bb0d68fd366f9d19c71d597ae841 (patch) | |
tree | 9851dbd49186bdeb4f877819e4f922e0f8514a04 /testsuite/mk/test.mk | |
parent | 03c2de0f4344d013522be3bc5a57b57312075957 (diff) | |
download | haskell-ef2945254987bb0d68fd366f9d19c71d597ae841.tar.gz |
testsuite: Clean up old/redundant predicates
Diffstat (limited to 'testsuite/mk/test.mk')
-rw-r--r-- | testsuite/mk/test.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk index 56c720f0fd..76a52d5030 100644 --- a/testsuite/mk/test.mk +++ b/testsuite/mk/test.mk @@ -38,21 +38,17 @@ endif # TEST_HC_OPTS is passed to every invocation of TEST_HC # in nested Makefiles TEST_HC_OPTS = -dcore-lint -dstg-lint -dcmm-lint \ - -no-user-$(GhcPackageDbFlag) -rtsopts $(EXTRA_HC_OPTS) + -no-user-package-db -rtsopts $(EXTRA_HC_OPTS) -ifeq "$(MinGhcVersion711)" "YES" # Don't warn about missing specialisations. They can only occur with `-O`, but # we want tests to produce the same output for all test ways. TEST_HC_OPTS += -fno-warn-missed-specialisations TEST_HC_OPTS += -fshow-warning-groups -endif -ifeq "$(MinGhcVersion801)" "YES" # Turn off any VT800 codes in the output or they wreak havoc on the # testsuite output. TEST_HC_OPTS += -fdiagnostics-color=never TEST_HC_OPTS += -fno-diagnostics-show-caret -endif # See #15278. TEST_HC_OPTS += -Werror=compat |