summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2016-04-25 14:55:38 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2016-04-26 10:12:19 +0200
commite8c04d4ca5c78c6b68dab840ea53af42eee99364 (patch)
tree5540a800e7db708c71c83bec2273774b368b17e2
parent28503fe984dbc00f687f0579967d583eebb9afcb (diff)
downloadhaskell-e8c04d4ca5c78c6b68dab840ea53af42eee99364.tar.gz
Testsuite: Delete test for deprecated "packedstring"
-rw-r--r--libraries/base/tests/all.T4
-rw-r--r--libraries/base/tests/packedstring001.hs11
-rw-r--r--libraries/base/tests/packedstring001.stdout1
3 files changed, 1 insertions, 15 deletions
diff --git a/libraries/base/tests/all.T b/libraries/base/tests/all.T
index 4ca3cdaf08..fc97666c01 100644
--- a/libraries/base/tests/all.T
+++ b/libraries/base/tests/all.T
@@ -103,8 +103,6 @@ test('memo002',
extra_clean(['Memo2.hi', 'Memo2.o'])],
multimod_compile_and_run, ['memo002',''])
-test('packedstring001', reqlib('packedstring'), compile_and_run, ['-package packedstring'])
-
test('stableptr001',
[when(fast(), skip), extra_run_opts('+RTS -K8m -RTS')],
compile_and_run, [''])
@@ -212,4 +210,4 @@ test('T9848',
['-O'])
test('T10149', normal, compile_and_run, [''])
test('T11334a', normal, compile_and_run, [''])
-test('T11555', normal, compile_and_run, ['']) \ No newline at end of file
+test('T11555', normal, compile_and_run, [''])
diff --git a/libraries/base/tests/packedstring001.hs b/libraries/base/tests/packedstring001.hs
deleted file mode 100644
index 9ee24e232c..0000000000
--- a/libraries/base/tests/packedstring001.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-
-module Main (main) where
-
-import Char (isSpace)
-import Data.PackedString
-
--- Bug in PackedString.lhs (fixed in rev 1.5)
-
-foo = packString "this is a test"
-main = print (filterPS (not.isSpace) foo)
-
diff --git a/libraries/base/tests/packedstring001.stdout b/libraries/base/tests/packedstring001.stdout
deleted file mode 100644
index fbd5abc3a0..0000000000
--- a/libraries/base/tests/packedstring001.stdout
+++ /dev/null
@@ -1 +0,0 @@
-"thisisatest"