summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-05-29 17:06:58 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2015-06-04 23:58:30 +0200
commit0686d76fc445e5338425f27743d9498b2a32d785 (patch)
tree39a429767a15e96d9362c47d3c741f69b57fbd74
parent07feab194aff4a2ae39514480736ce23a3b679b1 (diff)
downloadhaskell-0686d76fc445e5338425f27743d9498b2a32d785.tar.gz
Testsuite: don't show compile/link info for some tests
This info is not needed in the testlogs, and was actually making these tests fail on my machine because of some bug with the timeout program: ... [1 of 1] Compiling Main ( OutOfHeap.hs, tmp_T9579_outofheap_rtssome/Main.o ) Linking T9579_outofheap_rtsnone ... ...
-rw-r--r--testsuite/tests/ghci/scripts/Makefile2
-rw-r--r--testsuite/tests/rts/T9579/Makefile16
2 files changed, 9 insertions, 9 deletions
diff --git a/testsuite/tests/ghci/scripts/Makefile b/testsuite/tests/ghci/scripts/Makefile
index f70c0624c1..1c1dadb6ac 100644
--- a/testsuite/tests/ghci/scripts/Makefile
+++ b/testsuite/tests/ghci/scripts/Makefile
@@ -46,7 +46,7 @@ T9367:
.PHONY: T9762_prep
T9762_prep:
- '$(TEST_HC)' $(TEST_HC_OPTS) -O -fhpc -dynamic T9762B.hs
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -O -fhpc -dynamic T9762B.hs
.PHONY: T10408A
T10408A:
diff --git a/testsuite/tests/rts/T9579/Makefile b/testsuite/tests/rts/T9579/Makefile
index b05f0c474f..23177ee125 100644
--- a/testsuite/tests/rts/T9579/Makefile
+++ b/testsuite/tests/rts/T9579/Makefile
@@ -3,43 +3,43 @@ include $(TOP)/mk/boilerplate.mk
include $(TOP)/mk/test.mk
T9579_stackoverflow_rtsnone:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=none -fforce-recomp -with-rtsopts -K1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=none -fforce-recomp -with-rtsopts -K1m \
-outputdir tmp_T9579_stackoverflow_rtsnone \
StackOverflow.hs -o T9579_stackoverflow_rtsnone
T9579_stackoverflow_rtssome:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=some -fforce-recomp -with-rtsopts -K1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=some -fforce-recomp -with-rtsopts -K1m \
-outputdir tmp_T9579_stackoverflow_rtssome \
StackOverflow.hs -o T9579_stackoverflow_rtssome
T9579_stackoverflow_rtsall:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=all -fforce-recomp -with-rtsopts -K1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=all -fforce-recomp -with-rtsopts -K1m \
-outputdir tmp_T9579_stackoverflow_rtsall \
StackOverflow.hs -o T9579_stackoverflow_rtsall
T9579_stackoverflow_rtsall_no_suggestions:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=all -fforce-recomp -with-rtsopts -K1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=all -fforce-recomp -with-rtsopts -K1m \
-no-rtsopts-suggestions \
-outputdir tmp_T9579_stackoverflow_rtsall_no_suggestions \
StackOverflow.hs -o T9579_stackoverflow_rtsall_no_suggestions
T9579_outofheap_rtsnone:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=none -fforce-recomp -with-rtsopts -M1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=none -fforce-recomp -with-rtsopts -M1m \
-outputdir tmp_T9579_outofheap_rtsnone \
OutOfHeap.hs -o T9579_outofheap_rtsnone
T9579_outofheap_rtssome:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=some -fforce-recomp -with-rtsopts -M1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=some -fforce-recomp -with-rtsopts -M1m \
-outputdir tmp_T9579_outofheap_rtssome \
OutOfHeap.hs -o T9579_outofheap_rtssome
T9579_outofheap_rtsall:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=all -fforce-recomp -with-rtsopts -M1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=all -fforce-recomp -with-rtsopts -M1m \
-outputdir tmp_T9579_outofheap_rtsall \
OutOfHeap.hs -o T9579_outofheap_rtsall
T9579_outofheap_rtsall_no_suggestions:
- '$(TEST_HC)' $(TEST_HC_OPTS) -rtsopts=all -fforce-recomp -with-rtsopts -M1m \
+ '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -rtsopts=all -fforce-recomp -with-rtsopts -M1m \
-no-rtsopts-suggestions \
-outputdir tmp_T9579_outofheap_rtsall_no_suggestions \
OutOfHeap.hs -o T9579_outofheap_rtsall_no_suggestions