summaryrefslogtreecommitdiff
path: root/ghc/tests
diff options
context:
space:
mode:
authorsimonmar <unknown>2001-08-21 14:45:13 +0000
committersimonmar <unknown>2001-08-21 14:45:13 +0000
commit961efb905590c33fb8660876269b336a3dcc9d85 (patch)
treef37b21ad85f6450264db73a9a847c645ab4cf17e /ghc/tests
parent45d3bb73db3039e0f4a48a39273425a9e4b20f84 (diff)
downloadhaskell-961efb905590c33fb8660876269b336a3dcc9d85.tar.gz
[project @ 2001-08-21 14:45:13 by simonmar]
update output
Diffstat (limited to 'ghc/tests')
-rw-r--r--ghc/tests/ghci/ghci001.stdout2
-rw-r--r--ghc/tests/ghci/ghci002.stdout2
-rw-r--r--ghc/tests/ghci/ghci003.stdout2
-rw-r--r--ghc/tests/ghci/ghci004.stdout2
-rw-r--r--ghc/tests/ghci/ghci005.stdout4
-rw-r--r--ghc/tests/ghci/ghci006.stdout2
6 files changed, 1 insertions, 13 deletions
diff --git a/ghc/tests/ghci/ghci001.stdout b/ghc/tests/ghci/ghci001.stdout
index ead99555a9..2a123fef13 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 6fa668e83c..03773d970a 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 b1c768e962..9157df1684 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 7f530a1021..df8dc9546f 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 aaef7c5e5c..8c3aed4f8e 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 acf4462ab0..bf2830ae8a 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