diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-02 15:45:57 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-02 17:10:43 +0200 |
commit | 5d7a873a6bae4e2be70252dbc585d766e129e9f9 (patch) | |
tree | cefaa8f11d882b0ba400c36d4e1ad90be36cc8f8 /testsuite | |
parent | 3cc8f075313a4f7e934ba69250a167a62f3005af (diff) | |
download | haskell-5d7a873a6bae4e2be70252dbc585d766e129e9f9.tar.gz |
Testsuite: 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.
This brings us closer to passing the complete testsuite.
Differential Revision: https://phabricator.haskell.org/D1203
Diffstat (limited to 'testsuite')
-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 7a4e4f1686..920d63433d 100644 --- a/testsuite/mk/test.mk +++ b/testsuite/mk/test.mk @@ -44,6 +44,10 @@ TEST_HC_OPTS = -fforce-recomp -dcore-lint -dcmm-lint -dno-debug-output -no-user- # TEST_HC_OPTS += -fno-warn-tabs +# 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 + RUNTEST_OPTS = ifeq "$(filter $(TargetOS_CPP), cygwin32 mingw32)" "" |