summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/should_run/Makefile
blob: 1d4be3ec511ac42675eeec5aae2b67b0bd9d1ca2 (plain)
1
2
3
4
5
6
7
8
9
TOP=../../..
include $(TOP)/mk/boilerplate.mk
include $(TOP)/mk/test.mk

# Test that threadDelay can be interrupted by ^C.
T3171:
	echo "do Control.Concurrent.threadDelay 3000000; putStrLn \"threadDelay was not interrupted\"" | \
	"$(TEST_HC)" $(TEST_HC_OPTS_INTERACTIVE) & \
	sleep 2; kill -INT $$!; wait