diff options
author | Richard Eisenberg <rae@cs.brynmawr.edu> | 2018-07-12 16:21:54 -0400 |
---|---|---|
committer | Richard Eisenberg <rae@cs.brynmawr.edu> | 2018-07-14 21:23:30 -0400 |
commit | b7d60022bfcfdeb5e27ba5a0575b2c229b36e21b (patch) | |
tree | d25c6ecbc2e468910b0c784ff5520b29afce667f /testsuite/tests/patsyn | |
parent | a754a420b53cd2210ef60dcd695bf3334af2e400 (diff) | |
download | haskell-b7d60022bfcfdeb5e27ba5a0575b2c229b36e21b.tar.gz |
Make some tests robust against DEBUG compiler
Several tests were failing in DEBUG mode, but fixing this
was easy: just pass $(TEST_HC_OPTS) in the relevant
Makefiles.
Diffstat (limited to 'testsuite/tests/patsyn')
-rw-r--r-- | testsuite/tests/patsyn/should_compile/T13350/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/patsyn/should_compile/T13350/Makefile b/testsuite/tests/patsyn/should_compile/T13350/Makefile index ffd584a2a3..d3a42e46a9 100644 --- a/testsuite/tests/patsyn/should_compile/T13350/Makefile +++ b/testsuite/tests/patsyn/should_compile/T13350/Makefile @@ -6,7 +6,7 @@ LOCAL_PKGCONF=local.package.conf T13350: "$(GHC_PKG)" init $(LOCAL_PKGCONF) - cd boolean && "$(TEST_HC)" -v0 --make Setup.hs + cd boolean && "$(TEST_HC)" $(TEST_HC_OPTS) -v0 --make Setup.hs cd boolean && ./Setup configure -v0 --with-compiler="$(TEST_HC)" --with-hc-pkg="$(GHC_PKG)" --package-db=../$(LOCAL_PKGCONF) cd boolean && ./Setup build -v0 cd boolean && ./Setup register -v0 --inplace |