diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-11 09:18:09 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-06-17 16:22:04 -0400 |
commit | f817d816e60a487bca64037095c01e9956225b64 (patch) | |
tree | 7e2779c7e2485539001b3649bea62554b6d924f7 /testsuite/tests/ghci.debugger/scripts/print037.script | |
parent | aa9e7b7196f03f84579e3b4a09068c668cbe6ffb (diff) | |
download | haskell-f817d816e60a487bca64037095c01e9956225b64.tar.gz |
Update testsuite
* support detection of slow ghc-bignum backend (to replace the detection
of integer-simple use). There are still some test cases that the
native backend doesn't handle efficiently enough.
* remove tests for GMP only functions that have been removed from
ghc-bignum
* fix test results showing dependent packages (e.g. integer-gmp) or
showing suggested instances
* fix test using Integer/Natural API or showing internal names
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/print037.script')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/print037.script | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/print037.script b/testsuite/tests/ghci.debugger/scripts/print037.script index 7bf332c175..3e2a07f359 100644 --- a/testsuite/tests/ghci.debugger/scripts/print037.script +++ b/testsuite/tests/ghci.debugger/scripts/print037.script @@ -1,11 +1,8 @@ -- Test out printing of integers in GHCi --- With @integer-gmp@, small integer literals get converted directly into --- @S# i#@. This optimization means that small integers are always already +-- With @ghc-bignum@, small integer literals get converted directly into +-- @IS i#@. This optimization means that small integers are always already -- evaluated in the output for @:p@. --- --- Since we want this test to work on @integer-simple@ too, we explicitly --- force the literals. let smallNeg = -53 :: Integer :f smallNeg |