From: Rob Pike Date: Fri, 6 Jun 2008 20:38:16 +0000 (-0700) Subject: print count of failing tests X-Git-Tag: weekly.2009-11-06~3754 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=17ee7818dee085ca271639803e0e68e7ed1f8cae;p=gostls13.git print count of failing tests SVN=121467 --- diff --git a/test/run b/test/run index 2dba6fc8cb..209e707d52 100755 --- a/test/run +++ b/test/run @@ -38,4 +38,7 @@ if ! diff run.out golden.out then failed=1 fi + +echo 2>&1 $(grep -c '^BUG' run.out) tests are failing incorrectly + exit $failed