[commit: testsuite] master: Fix T1133, T1133A when BINDIST=YES (2cb474d)
Ian Lynagh
igloo at earth.li
Thu Jan 24 17:38:47 CET 2013
Repository : ssh://darcs.haskell.org//srv/darcs/testsuite
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/2cb474d25990f42b87160ac7ed5c10dd93ca32d9
>---------------------------------------------------------------
commit 2cb474d25990f42b87160ac7ed5c10dd93ca32d9
Author: Ian Lynagh <ian at well-typed.com>
Date: Thu Jan 24 16:39:50 2013 +0000
Fix T1133, T1133A when BINDIST=YES
>---------------------------------------------------------------
tests/deriving/should_compile/Makefile | 4 ++--
tests/deriving/should_fail/Makefile | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/deriving/should_compile/Makefile b/tests/deriving/should_compile/Makefile
index 666f7a7..3ae7d49 100644
--- a/tests/deriving/should_compile/Makefile
+++ b/tests/deriving/should_compile/Makefile
@@ -4,6 +4,6 @@ include $(TOP)/mk/test.mk
.PHONY: T1133
T1133:
- $(TEST_HC) $(TEST_HC_OPTS) -c T1133.hs-boot
- $(TEST_HC) $(TEST_HC_OPTS) -c T1133.hs
+ '$(TEST_HC)' $(TEST_HC_OPTS) -c T1133.hs-boot
+ '$(TEST_HC)' $(TEST_HC_OPTS) -c T1133.hs
diff --git a/tests/deriving/should_fail/Makefile b/tests/deriving/should_fail/Makefile
index f9f554d..629e011 100644
--- a/tests/deriving/should_fail/Makefile
+++ b/tests/deriving/should_fail/Makefile
@@ -8,6 +8,6 @@ drvfail016:
.PHONY: T1133A
T1133A:
- $(TEST_HC) $(TEST_HC_OPTS) -c T1133A.hs-boot
- -$(TEST_HC) $(TEST_HC_OPTS) -c T1133A.hs
+ '$(TEST_HC)' $(TEST_HC_OPTS) -c T1133A.hs-boot
+ -'$(TEST_HC)' $(TEST_HC_OPTS) -c T1133A.hs
More information about the ghc-commits
mailing list