summaryrefslogtreecommitdiff
path: root/testsuite/timeout
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2008-12-17 12:50:46 +0000
committerSimon Marlow <marlowsd@gmail.com>2008-12-17 12:50:46 +0000
commita0f8b238b9f448b2f333df37b42ac83e1d021bfc (patch)
treed50da8e2915234b74a30d5d85f5ebd397ef010ae /testsuite/timeout
parent51f05d5765548fbf8caaa163647c8b03980b0d12 (diff)
downloadhaskell-a0f8b238b9f448b2f333df37b42ac83e1d021bfc.tar.gz
Make the testsuite work with the new build system
Diffstat (limited to 'testsuite/timeout')
-rw-r--r--testsuite/timeout/ghc.mk41
1 files changed, 41 insertions, 0 deletions
diff --git a/testsuite/timeout/ghc.mk b/testsuite/timeout/ghc.mk
new file mode 100644
index 0000000000..6d69fdda18
--- /dev/null
+++ b/testsuite/timeout/ghc.mk
@@ -0,0 +1,41 @@
+TIMEOUT_PROGRAM = $(INPLACE_BIN)/timeout$(exeext)
+
+ifeq "$(findstring thr,$(GhcRTSWays))" ""
+$(TIMEOUT_PROGRAM): testsuite/timeout/timeout.py
+ $(MKDIRHIER) `dirname $@`
+ cp $< $@
+ chmod +x $@
+else
+testsuite/timeout_dist_MODULES = Main WinCBindings
+testsuite/timeout_dist_PROG = timeout
+testsuite/timeout_dist_DEP_INCLUDE_DIRS = $(GHC_INCLUDE_DIR)
+testsuite/timeout_HC_OPTS = -threaded -XCPP -package process
+ifeq "$(Windows)" "YES"
+testsuite/timeout_HC_OPTS += -package Win32
+else
+testsuite/timeout_HC_OPTS += -package unix
+endif
+
+# XXX when GHC generates dependencies it uses the module name, not the
+# filename, so we get dependencies on Main.o rather than timeout.o.
+# If we don't fix this, timeout gets compiled before the libraries.
+testsuite/timeout/dist/build/Main.hs : testsuite/timeout/timeout.hs $(MKDIRHIER)
+ @$(MKDIRHIER) $(dir $@)
+ $(CP) $< $@
+
+$(eval $(call build-prog,testsuite/timeout,dist,1))
+endif
+
+all : testsuite/timeout/calibrate.out
+
+# depend on $(GHC_STAGE2) so we can be sure all the libs are built
+testsuite/timeout/calibrate.out: $(GHC_STAGE2)
+ $(RM) -f testsuite/timeout/TimeMe.o testsuite/timeout/TimeMe.hi testsuite/timeout/TimeMe testsuite/timeout/TimeMe.exe
+ cd testsuite/timeout && $(PYTHON) calibrate "$(GHC_STAGE1_ABS)" > ../../$@
+
+CLEAN_FILES += testsuite/timeout/calibrate.out
+
+# We use stage 1 to do the calibration, as stage 2 may not exist.
+# This isn't necessarily the compiler we'll be running the testsuite
+# with, but it's really the performance of the machine that we're
+# interested in