Repository : ssh://darcs.haskell.org//srv/darcs/testsuite

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/6d604287b405dc51b18b8920c4d9542a4f7067bb

>---------------------------------------------------------------

commit 6d604287b405dc51b18b8920c4d9542a4f7067bb
Author: Ian Lynagh <[email protected]>
Date:   Sat Nov 19 23:53:51 2011 +0000

    Move ioref001 to base/tests

>---------------------------------------------------------------

 tests/lib/IORef/Makefile        |    3 ---
 tests/lib/IORef/all.T           |    4 ----
 tests/lib/IORef/ioref001.hs     |    9 ---------
 tests/lib/IORef/ioref001.stdout |    1 -
 4 files changed, 0 insertions(+), 17 deletions(-)

diff --git a/tests/lib/IORef/Makefile b/tests/lib/IORef/Makefile
deleted file mode 100644
index 9101fbd..0000000
--- a/tests/lib/IORef/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
-TOP=../../..
-include $(TOP)/mk/boilerplate.mk
-include $(TOP)/mk/test.mk
diff --git a/tests/lib/IORef/all.T b/tests/lib/IORef/all.T
deleted file mode 100644
index cb41d73..0000000
--- a/tests/lib/IORef/all.T
+++ /dev/null
@@ -1,4 +0,0 @@
-test('ioref001', compose(skip_if_fast,extra_run_opts('+RTS -K64m -RTS')), \
-        compile_and_run, ['+RTS -K64m -RTS'])
-
-# need to add -K32m to the compiler opts, so that GHCi gets it too
diff --git a/tests/lib/IORef/ioref001.hs b/tests/lib/IORef/ioref001.hs
deleted file mode 100644
index 837b82e..0000000
--- a/tests/lib/IORef/ioref001.hs
+++ /dev/null
@@ -1,9 +0,0 @@
-
-module Main where
-
-import Data.IORef
-
-loop r 0 = return ()
-loop r c = loop r (c-1) >> writeIORef r 42
-
-main = newIORef 0 >>= \r -> loop r 1000000 >> putStrLn "done"
diff --git a/tests/lib/IORef/ioref001.stdout b/tests/lib/IORef/ioref001.stdout
deleted file mode 100644
index 19f86f4..0000000
--- a/tests/lib/IORef/ioref001.stdout
+++ /dev/null
@@ -1 +0,0 @@
-done



_______________________________________________
Cvs-ghc mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to