[commit: ghc] wip/rae: Testsuite wibble due to #9404 (95a024c)

git at git.haskell.org git at git.haskell.org
Tue Nov 11 15:06:52 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/rae
Link       : http://ghc.haskell.org/trac/ghc/changeset/95a024c460c3b775549516645cf673da283811b3/ghc

>---------------------------------------------------------------

commit 95a024c460c3b775549516645cf673da283811b3
Author: Richard Eisenberg <eir at cis.upenn.edu>
Date:   Tue Nov 11 07:58:03 2014 -0500

    Testsuite wibble due to #9404


>---------------------------------------------------------------

95a024c460c3b775549516645cf673da283811b3
 testsuite/tests/ghci/scripts/ghci046.script | 4 ++--
 testsuite/tests/ghci/scripts/ghci046.stdout | 6 ++++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/testsuite/tests/ghci/scripts/ghci046.script b/testsuite/tests/ghci/scripts/ghci046.script
index f07e06f..28c5cde 100644
--- a/testsuite/tests/ghci/scripts/ghci046.script
+++ b/testsuite/tests/ghci/scripts/ghci046.script
@@ -12,8 +12,8 @@ type instance OR HTrue  HTrue  = HTrue
 type instance OR HTrue  HFalse = HTrue
 type instance OR HFalse HTrue  = HTrue
 type instance OR HFalse HFalse = HFalse
-:t undefined :: AND HTrue HTrue
-:t undefined :: AND (OR HFalse HTrue) (OR HTrue HFalse)
+:kind! AND HTrue HTrue
+:kind! AND (OR HFalse HTrue) (OR HTrue HFalse)
 let t = undefined :: AND HTrue HTrue
 let f = undefined :: AND HTrue HFalse
 type instance AND HTrue  HTrue  = HFalse
diff --git a/testsuite/tests/ghci/scripts/ghci046.stdout b/testsuite/tests/ghci/scripts/ghci046.stdout
index d600596..c4e7cf3 100644
--- a/testsuite/tests/ghci/scripts/ghci046.stdout
+++ b/testsuite/tests/ghci/scripts/ghci046.stdout
@@ -1,4 +1,6 @@
-undefined :: AND HTrue HTrue :: HTrue
-undefined :: AND (OR HFalse HTrue) (OR HTrue HFalse) :: HTrue
+AND HTrue HTrue :: *
+= HTrue
+AND (OR HFalse HTrue) (OR HTrue HFalse) :: *
+= HTrue
 t :: HTrue
 t :: HFalse



More information about the ghc-commits mailing list