From: simonm Date: Wed, 17 Dec 1997 13:10:31 +0000 (+0000) Subject: [project @ 1997-12-17 13:10:30 by simonm] X-Git-Tag: Approx_2487_patches~1162 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ad4dc1e5e36985465601ac589eb69603aa91d019;p=ghc-hetmet.git [project @ 1997-12-17 13:10:30 by simonm] use '----' instead of '***' so as not to get confuesd with error messages --- diff --git a/ghc/tests/mk/should_compile.mk b/ghc/tests/mk/should_compile.mk index cb08aa5..d0b7e1f 100644 --- a/ghc/tests/mk/should_compile.mk +++ b/ghc/tests/mk/should_compile.mk @@ -6,7 +6,7 @@ HS_SRCS = $(wildcard *.hs) SRC_RUNTEST_OPTS += -o1 $*.stdout -o2 $*.stderr -x 0 %.o : %.hs - @echo \*\*\* Testing for successful compilation of $< + @echo ---- Testing for successful compilation of $< @$(RUNTEST) $(HC) $(RUNTEST_OPTS) -- $(HC_OPTS) -c $< -o $@ all :: $(HS_OBJS) diff --git a/ghc/tests/mk/should_fail.mk b/ghc/tests/mk/should_fail.mk index 3c43e36..ec39011 100644 --- a/ghc/tests/mk/should_fail.mk +++ b/ghc/tests/mk/should_fail.mk @@ -6,7 +6,7 @@ HS_SRCS = $(wildcard *.hs) SRC_RUNTEST_OPTS += -o1 $*.stdout -o2 $*.stderr -x 1 %.o : %.hs - @echo \*\*\* Testing for failure to compile $< + @echo ---- Testing for failure to compile $< @$(RUNTEST) $(HC) $(RUNTEST_OPTS) -- $(HC_OPTS) -c $< -o $@ all :: $(HS_OBJS)