[commit: testsuite] master: Don't hide test commands when running make by hand (76f8b27)
Ian Lynagh
igloo at earth.li
Wed May 25 19:46:14 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/testsuite
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/76f8b276b6a9030d4eed83bc26928c208d014cd6
>---------------------------------------------------------------
commit 76f8b276b6a9030d4eed83bc26928c208d014cd6
Author: Ian Lynagh <igloo at earth.li>
Date: Wed May 25 17:53:47 2011 +0100
Don't hide test commands when running make by hand
>---------------------------------------------------------------
tests/ghc-regress/lib/IO/Makefile | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/tests/ghc-regress/lib/IO/Makefile b/tests/ghc-regress/lib/IO/Makefile
index e433ad7..861ee33 100644
--- a/tests/ghc-regress/lib/IO/Makefile
+++ b/tests/ghc-regress/lib/IO/Makefile
@@ -3,12 +3,12 @@ include $(TOP)/mk/boilerplate.mk
include $(TOP)/mk/test.mk
test.concio001:
- @$(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 concio001 -o concio001
- @(sleep 1; echo x) | ./concio001
+ $(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 concio001 -o concio001
+ (sleep 1; echo x) | ./concio001
test.concio001.thr:
- @$(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 -threaded concio001 -o concio001
- @(sleep 1; echo x) | ./concio001
+ $(TEST_HC) $(TEST_HC_OPTS) --make -fforce-recomp -v0 -threaded concio001 -o concio001
+ (sleep 1; echo x) | ./concio001
# NB. utf8-test should *not* have a final newline. The last char should be 'X'.
utf16-test: utf8-test
@@ -36,13 +36,13 @@ hSetEncoding001.in : latin1 utf8-test utf16le-test utf16be-test utf16-test utf32
cat >$@ latin1 utf8-test utf16le-test utf16be-test utf16-test utf32-test utf32le-test utf32be-test utf8-bom-test
environment001-test:
- @"$(TEST_HC)" --make -fforce-recomp -v0 environment001.hs -o environment001
- @(sleep 1; echo x) | GHC_TEST=马å
æ¯ ./environment001 说
+ "$(TEST_HC)" --make -fforce-recomp -v0 environment001.hs -o environment001
+ (sleep 1; echo x) | GHC_TEST=马å
æ¯ ./environment001 说
3307-test:
- @"$(TEST_HC)" --make -fforce-recomp -v0 3307.hs -o 3307
+ "$(TEST_HC)" --make -fforce-recomp -v0 3307.hs -o 3307
echo Ni hao > chinese-file-å°è¯´
echo chinese-file-å°è¯´ > chinese-name
# Try a UTF-8 locale. I would test another one (like Big5) but GHC
# developers probably won't have it on their machines:
- @(sleep 1; echo x) | LC_ALL=en_US.UTF-8 ./3307 chinese-file-å°è¯´
+ (sleep 1; echo x) | LC_ALL=en_US.UTF-8 ./3307 chinese-file-å°è¯´
More information about the Cvs-ghc
mailing list