summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci.debugger/scripts/break001.stdout
diff options
context:
space:
mode:
authorAlec Theriault <alec.theriault@gmail.com>2019-01-08 10:50:30 -0800
committerBen Gamari <ben@smart-cactus.org>2019-01-16 14:17:11 -0500
commitd2eb344a38f6c727040ba76e584aeaca8e8aefb3 (patch)
tree8e12f97679d9c1122742be631df08af2a6d83a28 /testsuite/tests/ghci.debugger/scripts/break001.stdout
parentf7def747cf0da103237cd17af5c8bfdbdf5823b2 (diff)
downloadhaskell-d2eb344a38f6c727040ba76e584aeaca8e8aefb3.tar.gz
Fix tests for `integer-simple`
A bunch of tests for `integer-simple` were now broken for a foolish reason: unlike the `integer-gmp` case, there is no CorePrep optimization for turning small integers directly into applications of `S#`. Rather than port this optimization to `integer-simple` (which would involve moving a bunch of `integer-simple` names into `PrelNames`), I switched as many tests as possible to use `Int`. The printing of `Integer` is already tested in `print037`.
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/break001.stdout')
-rw-r--r--testsuite/tests/ghci.debugger/scripts/break001.stdout12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/break001.stdout b/testsuite/tests/ghci.debugger/scripts/break001.stdout
index 50be9af2cc..7035306c29 100644
--- a/testsuite/tests/ghci.debugger/scripts/break001.stdout
+++ b/testsuite/tests/ghci.debugger/scripts/break001.stdout
@@ -1,13 +1,13 @@
Breakpoint 0 activated at Test2.hs:3:7-9
Breakpoint 1 activated at Test2.hs:5:7
Stopped in Test2.f, Test2.hs:3:7-9
-_result :: Integer = _
-x :: Integer = 1
+_result :: Int = _
+x :: Int = 1
Stopped in Test2.g, Test2.hs:5:7
-_result :: Integer = _
-y :: Integer = 1
-y :: Integer = 1
-_result :: Integer = _
+_result :: Int = _
+y :: Int = 1
+y :: Int = 1
+_result :: Int = _
1
y = 1
()