diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-04-17 03:14:41 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-04-17 03:14:41 -0700 |
commit | 619a324ed6a35708e4a3746f48c23b4f294e82df (patch) | |
tree | a6aeecc5a1d16f2696262b25ff34e6068b556065 /testsuite/tests/rts | |
parent | ad6d6a76eeeb9e33a96054f18c1306e9ebafa652 (diff) | |
download | haskell-619a324ed6a35708e4a3746f48c23b4f294e82df.tar.gz |
Make T9579 parallel-safe and add build outputs to .gitignore
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Diffstat (limited to 'testsuite/tests/rts')
-rw-r--r-- | testsuite/tests/rts/T9579/.gitignore | 6 | ||||
-rw-r--r-- | testsuite/tests/rts/T9579/Makefile | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/tests/rts/T9579/.gitignore b/testsuite/tests/rts/T9579/.gitignore new file mode 100644 index 0000000000..e3a88e5db1 --- /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 b9700477a9..a205eacb78 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 |