From 84b502f0d99b597af4d37791021f4032ca8aef0e Mon Sep 17 00:00:00 2001 From: sewardj Date: Tue, 3 Apr 2001 16:28:11 +0000 Subject: [PATCH] [project @ 2001-04-03 16:28:11 by sewardj] A --make test. Unfortunately not really connected to the build system yet. --- ghc/tests/ghci/prog004/AA.hs | 2 ++ ghc/tests/ghci/prog004/BB.hs | 3 +++ ghc/tests/ghci/prog004/Main.hs | 3 +++ ghc/tests/ghci/prog004/Makefile | 7 +++++++ ghc/tests/ghci/prog004/YY.hs | 3 +++ ghc/tests/ghci/prog004/ZZ.hs | 3 +++ ghc/tests/ghci/prog004/prog004.stdout | 1 + 7 files changed, 22 insertions(+) create mode 100644 ghc/tests/ghci/prog004/AA.hs create mode 100644 ghc/tests/ghci/prog004/BB.hs create mode 100644 ghc/tests/ghci/prog004/Main.hs create mode 100644 ghc/tests/ghci/prog004/Makefile create mode 100644 ghc/tests/ghci/prog004/YY.hs create mode 100644 ghc/tests/ghci/prog004/ZZ.hs create mode 100644 ghc/tests/ghci/prog004/prog004.stdout 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. -- 1.7.10.4