Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/72117cba299d1ea842dcbfda69c8951d4dc11eed >--------------------------------------------------------------- commit 72117cba299d1ea842dcbfda69c8951d4dc11eed Author: Ian Lynagh <[email protected]> Date: Thu Nov 17 17:16:18 2011 +0000 Add missing $(TEST_HC_OPTS) in tests >--------------------------------------------------------------- tests/simplCore/should_compile/Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/simplCore/should_compile/Makefile b/tests/simplCore/should_compile/Makefile index d8eaebc..913d362 100644 --- a/tests/simplCore/should_compile/Makefile +++ b/tests/simplCore/should_compile/Makefile @@ -53,11 +53,11 @@ T4957: .PHONY: simpl021 simpl021: $(RM) -f Simpl021A.hi Simpl021A.o Simpl021B.hi Simpl021B.o - '$(TEST_HC)' -c Simpl021A.hs -O - '$(TEST_HC)' -c Simpl021B.hs -O + '$(TEST_HC)' $(TEST_HC_OPTS) -c Simpl021A.hs -O + '$(TEST_HC)' $(TEST_HC_OPTS) -c Simpl021B.hs -O .PHONY: T5327 T5327: $(RM) -f T5327.hi T5327.o - '$(TEST_HC)' -c T5327.hs -O -ddump-simpl | grep -c "GHC.Prim.># 34 " + '$(TEST_HC)' $(TEST_HC_OPTS) -c T5327.hs -O -ddump-simpl | grep -c "GHC.Prim.># 34 " _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
