From: Radek Doulik Date: Mon, 18 Feb 2002 20:11:32 +0000 (-0000) Subject: 2002-02-18 Radek Doulik X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=7cdedaaca75b0dbc0fc2d3e2f1d8211b7e43b758;p=mono.git 2002-02-18 Radek Doulik * mono/tests/Makefile.am: display # of passing tests too svn path=/trunk/mono/; revision=2483 --- diff --git a/ChangeLog b/ChangeLog index 2cedd4d993f..8c39f9bbe7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2002-02-18 Radek Doulik + + * mono/tests/Makefile.am: display # of passing tests too + +2002-02-17 Radek Doulik + + * mono/tests/Makefile.am (test): display # of failed tests + 2002-02-16 Jeffrey Stedfast * configure.in: Add checks for SOL_IP, SOL_TCP, and diff --git a/mono/tests/Makefile.am b/mono/tests/Makefile.am index 1db56505276..029bb051589 100644 --- a/mono/tests/Makefile.am +++ b/mono/tests/Makefile.am @@ -84,13 +84,16 @@ EXTRA_DIST=test-driver $(TESTSRC) test: $(TEST_PROG) $(TESTSI) @failed=0; \ + passed=0; \ for i in $(TESTSI); do \ - if ! ./test-driver $(TEST_PROG) $$i; \ + if ./test-driver $(TEST_PROG) $$i; \ then \ + passed=`expr $${passed} + 1`; \ + else \ failed=`expr $${failed} + 1`; \ fi \ done; \ - echo "$${failed} test(s) failed." + echo "$${passed} test(s) passed. $${failed} test(s) failed." testb: $(TEST_PROG) $(TESTBS) for i in $(TESTBS); do \