diff options
author | simonmar <unknown> | 2005-02-04 10:59:56 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-02-04 10:59:56 +0000 |
commit | 52848b670fdf5fe028687587eb2f6bd62d5fac5b (patch) | |
tree | 96c5914d2a0c1c79d4e3d7f6973c5427172ec182 /testsuite/timeout/Makefile | |
parent | 9f2a193465801f3891acaa0cae39e2b24d091513 (diff) | |
download | haskell-52848b670fdf5fe028687587eb2f6bd62d5fac5b.tar.gz |
[project @ 2005-02-04 10:59:55 by simonmar]
Add a timeout to test runs, using a wrapper program (written in
Haskell, using System.Process of course!).
Diffstat (limited to 'testsuite/timeout/Makefile')
-rw-r--r-- | testsuite/timeout/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/timeout/Makefile b/testsuite/timeout/Makefile new file mode 100644 index 0000000000..9d438fa8c6 --- /dev/null +++ b/testsuite/timeout/Makefile @@ -0,0 +1,12 @@ +TOP = .. +include $(TOP)/mk/boilerplate.mk + +HC = $(GHC_INPLACE) +MKDEPENDHS = $(GHC_INPLACE) +SRC_HC_OPTS += -threaded + +HS_PROG = timeout + +boot :: $(HS_PROG) + +include $(TOP)/mk/target.mk |