From f01feb8282db31d3facdbaacc2b10add9f51fc7b Mon Sep 17 00:00:00 2001 From: Will Estes Date: Tue, 3 Sep 2002 13:42:10 +0000 Subject: [PATCH] target test: quote the results echoing so that the ECHO_C will work on systems where it is used --- tests/Makefile.am | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index e9a6488..a3dcb93 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -61,7 +61,6 @@ SUBDIRS = \ test: NOK=;\ NFAIL=;\ - NSKIP=;\ for dir in $(SUBDIRS) ; do \ echo Executing test "$$dir" ; \ ( cd "$$dir" && $(MAKE) test > OUTPUT 2>&1 ) ; \ @@ -75,6 +74,5 @@ test: esac; \ done ; \ echo Results: ; \ - echo Tests succeeded: `echo @ECHO_N@ $$NOK@ECHO_C@|wc -c`; \ - echo Tests SKIPPED: `echo @ECHO_N@ $$NSKIP@ECHO_C@|wc -c`; \ - echo Tests FAILED: `echo @ECHO_N@ $$NFAIL@ECHO_C@|wc -c` ; + echo Tests succeeded: `echo @ECHO_N@ "$$NOK@ECHO_C@"|wc -c`; \ + echo Tests FAILED: `echo @ECHO_N@ "$$NFAIL@ECHO_C@"|wc -c` ; -- 2.49.0