diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-18 19:00:15 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-06-20 16:22:07 +0200 |
commit | 3b49f8faa1cbd3a04f1d6aa817a315a853e0cd79 (patch) | |
tree | 5c221937ba623e310dd01365816ebdf3ee9dd682 /testsuite/tests/module | |
parent | 1d938aa3373f464f46dd3806a21aa85dda764ec6 (diff) | |
download | haskell-3b49f8faa1cbd3a04f1d6aa817a315a853e0cd79.tar.gz |
Testsuite: remove `-fforce-recomp` from default flags (#11980)
There is no need for this flag anymore, since each test runs in a
newly created directory. Removing it cleans up testlib.py a bit.
There is a small risk that this renders some tests useless. It's hard to
know. Those tests should have specified -fforce-recomp` explicitly
anyway, so I'm not going to worry about it. I've fixed the ones that
failed without -fforce-recomp.
Reviewed by: bgamari
Differential Revision: https://phabricator.haskell.org/D2346
Diffstat (limited to 'testsuite/tests/module')
-rw-r--r-- | testsuite/tests/module/base01/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/module/base01/Makefile b/testsuite/tests/module/base01/Makefile index 4358f0b3e6..e1ae4f2dd7 100644 --- a/testsuite/tests/module/base01/Makefile +++ b/testsuite/tests/module/base01/Makefile @@ -9,6 +9,6 @@ clean: base01: rm -f GHC/*.o rm -f GHC/*.hi - '$(TEST_HC)' $(filter-out -fforce-recomp,$(TEST_HC_OPTS)) -XNoImplicitPrelude -this-unit-id base -c GHC/Base.hs - '$(TEST_HC)' $(filter-out -fforce-recomp,$(TEST_HC_OPTS)) -XNoImplicitPrelude -this-unit-id base --make GHC.Foo + '$(TEST_HC)' $(TEST_HC_OPTS) -XNoImplicitPrelude -this-unit-id base -c GHC/Base.hs + '$(TEST_HC)' $(TEST_HC_OPTS) -XNoImplicitPrelude -this-unit-id base --make GHC.Foo |