diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-02-24 00:02:11 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-03-01 17:07:28 -0500 |
commit | aeefc90cf7fb42183aebe23ccc9d06863f5a9fcf (patch) | |
tree | 5eaa104203e24cb4ef0ab5bdbf8362704a604f4a /testsuite/tests/numeric | |
parent | d298cb9cf722126316c9697c20a8e0048498efb9 (diff) | |
download | haskell-aeefc90cf7fb42183aebe23ccc9d06863f5a9fcf.tar.gz |
testsuite: Suppress ticks when comparing -ddump-simpl output
Otherwise these tests break spuriously when core libraries are compiled
with source notes.
Diffstat (limited to 'testsuite/tests/numeric')
-rw-r--r-- | testsuite/tests/numeric/should_compile/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/numeric/should_compile/Makefile b/testsuite/tests/numeric/should_compile/Makefile index 522e703b50..9c7aa350f8 100644 --- a/testsuite/tests/numeric/should_compile/Makefile +++ b/testsuite/tests/numeric/should_compile/Makefile @@ -4,12 +4,12 @@ include $(TOP)/mk/test.mk T7116: $(RM) -f T7116.o T7116.hi - '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques T7116.hs + '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques -dsuppress-ticks T7116.hs T14170: $(RM) -f T14170.o T14170.hi - '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques T14170.hs + '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques -dsuppress-ticks T14170.hs T14465: $(RM) -f T14465.o T14465.hi - '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques T14465.hs + '$(TEST_HC)' $(TEST_HC_OPTS) -O2 -c -ddump-simpl -dsuppress-uniques -dsuppress-ticks T14465.hs |