summaryrefslogtreecommitdiff
path: root/test/run
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-06-06 13:38:16 -0700
committerRob Pike <r@golang.org>2008-06-06 13:38:16 -0700
commit8b9c6ac61705125f01096d95cc4bb4dac8379363 (patch)
tree74895d8eb7c48867f8e7fe98df50b80f742d4bf5 /test/run
parentc5165397c55f3092047256876b0222ef10c6e3e1 (diff)
downloadgolang-8b9c6ac61705125f01096d95cc4bb4dac8379363.tar.gz
print count of failing tests
SVN=121467
Diffstat (limited to 'test/run')
-rwxr-xr-xtest/run3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/run b/test/run
index 2dba6fc8c..209e707d5 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