Move the datamap001 (our only test) to the containers package
authorIan Lynagh <igloo@earth.li>
Fri, 3 Aug 2007 18:09:32 +0000 (18:09 +0000)
committerIan Lynagh <igloo@earth.li>
Fri, 3 Aug 2007 18:09:32 +0000 (18:09 +0000)
tests/Makefile [deleted file]
tests/all.T [deleted file]
tests/datamap001.hs [deleted file]
tests/datamap001.stdout [deleted file]

diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644 (file)
index 6a0abcf..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-# This Makefile runs the tests using GHC's testsuite framework.  It
-# assumes the package is part of a GHC build tree with the testsuite
-# installed in ../../../testsuite.
-
-TOP=../../../testsuite
-include $(TOP)/mk/boilerplate.mk
-include $(TOP)/mk/test.mk
diff --git a/tests/all.T b/tests/all.T
deleted file mode 100644 (file)
index b76a634..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-# This is a test script for use with GHC's testsuite framework, see
-# http://darcs.haskell.org/testsuite
-
-test('datamap001', normal, compile_and_run, [''])
-
diff --git a/tests/datamap001.hs b/tests/datamap001.hs
deleted file mode 100644 (file)
index 253690a..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-
-{-
-In the 6.6 era this printed [(5,"x")]; should be [(3,"b"),(5,"a")]
--}
-
-module Main (main) where
-
-import Data.Map
-
-main :: IO ()
-main = do let m = fromList [(3,"b"),(5,"a")]
-              f k a = Just "x"
-              m' = updateAt f 1 m
-          print m'
diff --git a/tests/datamap001.stdout b/tests/datamap001.stdout
deleted file mode 100644 (file)
index 3b2a864..0000000
+++ /dev/null
@@ -1 +0,0 @@
-fromList [(3,"b"),(5,"x")]