[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / concurrent / should_run / conc026.hs
diff --git a/ghc/tests/concurrent/should_run/conc026.hs b/ghc/tests/concurrent/should_run/conc026.hs
deleted file mode 100644 (file)
index ba86bf4..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
--- test for blocking putMVar
-
-import Concurrent
-
-main = do
-  m <- newMVar ()
-  forkIO (threadDelay 100000 >> takeMVar m)
-  putMVar m ()