diff --git a/ghc/tests/concurrent/should_run/conc023.hs b/ghc/tests/concurrent/should_run/conc023.hs
new file mode 100644
index 0000000000000000000000000000000000000000..d52bac243999e451fbea1ded30b4b4466e63e916
--- /dev/null
+++ b/ghc/tests/concurrent/should_run/conc023.hs
@@ -0,0 +1,22 @@
+-- !!! test threadDelay, Random, and QSemN.
+
+-- start a large number (n) of threads each of which will wait for a
+-- random delay between 0 and m seconds.  We use a semaphore to wait
+-- for all the threads to finish.
+
+import Random
+import Concurrent
+import Exception
+
+n = 5000  -- no. of threads
+m = 3000  -- maximum delay
+
+main = do
+   s <- newQSemN n
+   (is :: [Int]) <- sequence (take n (repeat (getStdRandom (randomR (1,m)))))
+   mapM (fork_sleep s) is
+   waitQSemN s n
+   where
+	fork_sleep s i = forkIO (do waitQSemN s 1
+			  	    threadDelay (i*1000)
+				    signalQSemN s 1)