From ad4dc1e5e36985465601ac589eb69603aa91d019 Mon Sep 17 00:00:00 2001 From: simonm Date: Wed, 17 Dec 1997 13:10:31 +0000 Subject: [PATCH] [project @ 1997-12-17 13:10:30 by simonm] use '----' instead of '***' so as not to get confuesd with error messages --- ghc/tests/mk/should_compile.mk | 2 +- ghc/tests/mk/should_fail.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) -- 1.7.10.4