diff options
author | Ian Lynagh <igloo@earth.li> | 2012-02-03 23:29:48 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-02-03 23:29:48 +0000 |
commit | c8755c9a0f40ed03989850b23bcaa3dcbae240da (patch) | |
tree | 1983a61e59a6a2e1e45dc347399158254bddc693 /testsuite/tests/lib | |
parent | ff4939ef5744d0a9d9deaa5bf2aee2d493c57393 (diff) | |
download | haskell-c8755c9a0f40ed03989850b23bcaa3dcbae240da.tar.gz |
Text.Printf tests have moved to base; part of #1161
Diffstat (limited to 'testsuite/tests/lib')
-rw-r--r-- | testsuite/tests/lib/Text.Printf/1548.hs | 11 | ||||
-rw-r--r-- | testsuite/tests/lib/Text.Printf/1548.stdout | 3 | ||||
-rw-r--r-- | testsuite/tests/lib/Text.Printf/Makefile | 3 | ||||
-rw-r--r-- | testsuite/tests/lib/Text.Printf/all.T | 1 |
4 files changed, 0 insertions, 18 deletions
diff --git a/testsuite/tests/lib/Text.Printf/1548.hs b/testsuite/tests/lib/Text.Printf/1548.hs deleted file mode 100644 index 68cec0548f..0000000000 --- a/testsuite/tests/lib/Text.Printf/1548.hs +++ /dev/null @@ -1,11 +0,0 @@ -import Text.Printf - -main = do - printf "%.*f\n" (2::Int) ((1/3) :: Double) - -- (expected: "0.33") - - printf "%.3s\n" "foobar" - -- (expected: "foo") - - printf "%10.5d\n" (4::Int) - -- (expected: " 00004") diff --git a/testsuite/tests/lib/Text.Printf/1548.stdout b/testsuite/tests/lib/Text.Printf/1548.stdout deleted file mode 100644 index 4976334b4f..0000000000 --- a/testsuite/tests/lib/Text.Printf/1548.stdout +++ /dev/null @@ -1,3 +0,0 @@ -0.33 -foo - 00004 diff --git a/testsuite/tests/lib/Text.Printf/Makefile b/testsuite/tests/lib/Text.Printf/Makefile deleted file mode 100644 index 9101fbd40a..0000000000 --- a/testsuite/tests/lib/Text.Printf/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -TOP=../../.. -include $(TOP)/mk/boilerplate.mk -include $(TOP)/mk/test.mk diff --git a/testsuite/tests/lib/Text.Printf/all.T b/testsuite/tests/lib/Text.Printf/all.T deleted file mode 100644 index aa26ff2d96..0000000000 --- a/testsuite/tests/lib/Text.Printf/all.T +++ /dev/null @@ -1 +0,0 @@ -test('1548', normal, compile_and_run, ['']) |