[project @ 2001-04-03 16:28:11 by sewardj]
authorsewardj <unknown>
Tue, 3 Apr 2001 16:28:11 +0000 (16:28 +0000)
committersewardj <unknown>
Tue, 3 Apr 2001 16:28:11 +0000 (16:28 +0000)
A --make test.  Unfortunately not really connected to the build
system yet.

ghc/tests/ghci/prog004/AA.hs [new file with mode: 0644]
ghc/tests/ghci/prog004/BB.hs [new file with mode: 0644]
ghc/tests/ghci/prog004/Main.hs [new file with mode: 0644]
ghc/tests/ghci/prog004/Makefile [new file with mode: 0644]
ghc/tests/ghci/prog004/YY.hs [new file with mode: 0644]
ghc/tests/ghci/prog004/ZZ.hs [new file with mode: 0644]
ghc/tests/ghci/prog004/prog004.stdout [new file with mode: 0644]

diff --git a/ghc/tests/ghci/prog004/AA.hs b/ghc/tests/ghci/prog004/AA.hs
new file mode 100644 (file)
index 0000000..e98a145
--- /dev/null
@@ -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 (file)
index 0000000..f302440
--- /dev/null
@@ -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 (file)
index 0000000..c38953f
--- /dev/null
@@ -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 (file)
index 0000000..e880710
--- /dev/null
@@ -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 (file)
index 0000000..ab090d9
--- /dev/null
@@ -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 (file)
index 0000000..599b358
--- /dev/null
@@ -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 (file)
index 0000000..a7b6f8c
--- /dev/null
@@ -0,0 +1 @@
+At her 60th birthday party, Margaret Thatcher blew on the cake to light the candles.