summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/ghci/should_run/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/ghci/should_run/Makefile')
-rw-r--r--testsuite/tests/ghc-regress/ghci/should_run/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/testsuite/tests/ghc-regress/ghci/should_run/Makefile b/testsuite/tests/ghc-regress/ghci/should_run/Makefile
deleted file mode 100644
index f2d6ad7070..0000000000
--- a/testsuite/tests/ghc-regress/ghci/should_run/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-TOP=../../../..
-include $(TOP)/mk/boilerplate.mk
-include $(TOP)/mk/test.mk
-
-# Test that threadDelay can be interrupted by ^C.
-3171:
- echo "do Control.Concurrent.threadDelay 3000000; putStrLn \"threadDelay was not interrupted\"" | \
- "$(TEST_HC)" $(TEST_HC_OPTS) -ignore-dot-ghci -v0 --interactive 2>3171.err & \
- sleep 2; kill -INT $$!; wait