diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-07-02 16:22:44 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-07-02 16:22:44 +0100 |
commit | c4260223803486543cb5d84e41c161bca77308b7 (patch) | |
tree | 0c9b538445c097cdd90f6363ea3b31ccfc60b5ea /testsuite/tests/rts/Makefile | |
parent | f0a23c0148408d2296df8770027f8399e4f8aeae (diff) | |
download | haskell-c4260223803486543cb5d84e41c161bca77308b7.tar.gz |
add test for #7037
Diffstat (limited to 'testsuite/tests/rts/Makefile')
-rw-r--r-- | testsuite/tests/rts/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/rts/Makefile b/testsuite/tests/rts/Makefile index 971807db93..3690a92bba 100644 --- a/testsuite/tests/rts/Makefile +++ b/testsuite/tests/rts/Makefile @@ -47,3 +47,10 @@ T5423: T6006_setup : '$(TEST_HC)' $(TEST_HC_OPTS) -c T6006.hs + +.PHONY: T7037 +T7037: + $(RM) 7037.o 7037.hi 7037$(exeext) + "$(TEST_HC)" $(TEST_HC_OPTS) T7037.hs -v0 + "$(TEST_HC)" $(filter-out -rtsopts, $(TEST_HC_OPTS)) T7037_main.c -v0 -o T7037_main -no-hs-main + ./T7037_main |