From: sewardj Date: Tue, 3 Apr 2001 16:28:11 +0000 (+0000) Subject: [project @ 2001-04-03 16:28:11 by sewardj] X-Git-Tag: Approximately_9120_patches~2212 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=84b502f0d99b597af4d37791021f4032ca8aef0e;p=ghc-hetmet.git [project @ 2001-04-03 16:28:11 by sewardj] A --make test. Unfortunately not really connected to the build system yet. --- diff --git a/ghc/tests/ghci/prog004/AA.hs b/ghc/tests/ghci/prog004/AA.hs new file mode 100644 index 0000000..e98a145 --- /dev/null +++ b/ghc/tests/ghci/prog004/AA.hs @@ -0,0 +1,2 @@ +module AA where +aa = putStr "At her 60th birthday party, Margaret Thatcher blew on the cake to light the candles.\n" diff --git a/ghc/tests/ghci/prog004/BB.hs b/ghc/tests/ghci/prog004/BB.hs new file mode 100644 index 0000000..f302440 --- /dev/null +++ b/ghc/tests/ghci/prog004/BB.hs @@ -0,0 +1,3 @@ +module BB where +import ZZ +bb = zz diff --git a/ghc/tests/ghci/prog004/Main.hs b/ghc/tests/ghci/prog004/Main.hs new file mode 100644 index 0000000..c38953f --- /dev/null +++ b/ghc/tests/ghci/prog004/Main.hs @@ -0,0 +1,3 @@ +module Main where +import YY +main = yy diff --git a/ghc/tests/ghci/prog004/Makefile b/ghc/tests/ghci/prog004/Makefile new file mode 100644 index 0000000..e880710 --- /dev/null +++ b/ghc/tests/ghci/prog004/Makefile @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------------- +# $Id: Makefile,v 1.1 2001/04/03 16:28:11 sewardj Exp $ + +TOP = ../.. +include $(TOP)/mk/boilerplate.mk + +include $(TOP)/mk/ghcmake.mk diff --git a/ghc/tests/ghci/prog004/YY.hs b/ghc/tests/ghci/prog004/YY.hs new file mode 100644 index 0000000..ab090d9 --- /dev/null +++ b/ghc/tests/ghci/prog004/YY.hs @@ -0,0 +1,3 @@ +module YY where +import BB +yy = bb diff --git a/ghc/tests/ghci/prog004/ZZ.hs b/ghc/tests/ghci/prog004/ZZ.hs new file mode 100644 index 0000000..599b358 --- /dev/null +++ b/ghc/tests/ghci/prog004/ZZ.hs @@ -0,0 +1,3 @@ +module ZZ where +import AA +zz = aa diff --git a/ghc/tests/ghci/prog004/prog004.stdout b/ghc/tests/ghci/prog004/prog004.stdout new file mode 100644 index 0000000..a7b6f8c --- /dev/null +++ b/ghc/tests/ghci/prog004/prog004.stdout @@ -0,0 +1 @@ +At her 60th birthday party, Margaret Thatcher blew on the cake to light the candles.