]> granicus.if.org Git - flex/commitdiff
target test: quote the results echoing so that the ECHO_C will work on
authorWill Estes <wlestes@users.sourceforge.net>
Tue, 3 Sep 2002 13:42:10 +0000 (13:42 +0000)
committerWill Estes <wlestes@users.sourceforge.net>
Tue, 3 Sep 2002 13:42:10 +0000 (13:42 +0000)
systems where it is used

tests/Makefile.am

index e9a648858d3d413c6d4a70e0c45ddade427b239a..a3dcb930f05890fe3cd909979193459a61d39129 100644 (file)
@@ -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` ;