[commit: ghc] master: Make T9579 parallel-safe and add build outputs to .gitignore (619a324)

git at git.haskell.org git at git.haskell.org
Fri Apr 17 10:14:35 UTC 2015


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/619a324ed6a35708e4a3746f48c23b4f294e82df/ghc

>---------------------------------------------------------------

commit 619a324ed6a35708e4a3746f48c23b4f294e82df
Author: Edward Z. Yang <ezyang at cs.stanford.edu>
Date:   Fri Apr 17 03:14:41 2015 -0700

    Make T9579 parallel-safe and add build outputs to .gitignore
    
    Signed-off-by: Edward Z. Yang <ezyang at cs.stanford.edu>


>---------------------------------------------------------------

619a324ed6a35708e4a3746f48c23b4f294e82df
 testsuite/tests/rts/T9579/.gitignore | 6 ++++++
 testsuite/tests/rts/T9579/Makefile   | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/testsuite/tests/rts/T9579/.gitignore b/testsuite/tests/rts/T9579/.gitignore
new file mode 100644
index 0000000..e3a88e5
--- /dev/null
+++ b/testsuite/tests/rts/T9579/.gitignore
@@ -0,0 +1,6 @@
+T9579_outofheap_rtsall
+T9579_outofheap_rtsnone
+T9579_outofheap_rtssome
+T9579_stackoverflow_rtsall
+T9579_stackoverflow_rtsnone
+T9579_stackoverflow_rtssome
diff --git a/testsuite/tests/rts/T9579/Makefile b/testsuite/tests/rts/T9579/Makefile
index b970047..a205eac 100644
--- a/testsuite/tests/rts/T9579/Makefile
+++ b/testsuite/tests/rts/T9579/Makefile
@@ -4,24 +4,30 @@ include $(TOP)/mk/test.mk
 
 T9579_stackoverflow_rtsnone:
 	'$(TEST_HC)' $(TEST_HC_OPTS) -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 \
+		 -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 \
+		 -outputdir tmp_T9579_stackoverflow_rtsall \
 		 StackOverflow.hs -o T9579_stackoverflow_rtsall
 
 T9579_outofheap_rtsnone:
 	'$(TEST_HC)' $(TEST_HC_OPTS) -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 \
+		 -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 \
+		 -outputdir tmp_T9579_outofheap_rtsall \
 		 OutOfHeap.hs -o T9579_outofheap_rtsall



More information about the ghc-commits mailing list