From: simonmar Date: Tue, 21 Aug 2001 14:45:13 +0000 (+0000) Subject: [project @ 2001-08-21 14:45:13 by simonmar] X-Git-Tag: Approximately_9120_patches~1145 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=961efb905590c33fb8660876269b336a3dcc9d85 [project @ 2001-08-21 14:45:13 by simonmar] update output --- diff --git a/ghc/tests/ghci/ghci001.stdout b/ghc/tests/ghci/ghci001.stdout index ead9955..2a123fe 100644 --- a/ghc/tests/ghci/ghci001.stdout +++ b/ghc/tests/ghci/ghci001.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> -- bug: shouldn't be defaulting these expressions Prelude> :type (+) forall a. (Num a) => a -> a -> a diff --git a/ghc/tests/ghci/ghci002.stdout b/ghc/tests/ghci/ghci002.stdout index 6fa668e..03773d9 100644 --- a/ghc/tests/ghci/ghci002.stdout +++ b/ghc/tests/ghci/ghci002.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> -- bug: we used to throw away the instance accidentally here Prelude> :m PrelBase PrelBase> 1 == (2 :: Int) diff --git a/ghc/tests/ghci/ghci003.stdout b/ghc/tests/ghci/ghci003.stdout index b1c768e..9157df1 100644 --- a/ghc/tests/ghci/ghci003.stdout +++ b/ghc/tests/ghci/ghci003.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> -- check that 'it' works Prelude> 1 1 diff --git a/ghc/tests/ghci/ghci004.stdout b/ghc/tests/ghci/ghci004.stdout index 7f530a1..df8dc95 100644 --- a/ghc/tests/ghci/ghci004.stdout +++ b/ghc/tests/ghci/ghci004.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> :unset +s +t Prelude> -- test importing a module from a package Prelude> :l ghci004 diff --git a/ghc/tests/ghci/ghci005.stdout b/ghc/tests/ghci/ghci005.stdout index aaef7c5..8c3aed4 100644 --- a/ghc/tests/ghci/ghci005.stdout +++ b/ghc/tests/ghci/ghci005.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> :unset +s +t Prelude> -- tests for :def, :undef Prelude> let void m = m >> return "" @@ -18,10 +16,10 @@ Prelude> let echo s = return (":! echo " ++ map Char.toUpper s) hello, world! Prelude> :echo hello, world! Prelude> :def echo echo +hello, world! command `echo' is already defined Prelude> :undef echo Prelude> :def echo echo Prelude> :echo hello, world! HELLO, WORLD! Prelude> Leaving GHCi. -hello, world! diff --git a/ghc/tests/ghci/ghci006.stdout b/ghc/tests/ghci/ghci006.stdout index acf4462..bf2830a 100644 --- a/ghc/tests/ghci/ghci006.stdout +++ b/ghc/tests/ghci/ghci006.stdout @@ -5,8 +5,6 @@ \____/\/ /_/\____/|_| Type :? for help. Loading package std ... linking ... done. -*** WARNING: . is writable by someone else, IGNORING! -*** WARNING: ./.ghci is writable by someone else, IGNORING! Prelude> :unset +s +t Prelude> :set -fglasgow-exts Prelude> -- test for contexts on existential types crashing the interpreter