From 0a29b8a0faf2b80b7c899cbc93526341b673d6cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 22 Feb 2009 17:36:30 +0000 Subject: [PATCH] Makes the Boost Build testing system correctly report the number of passed test cases instead of reporting all test cases as passed. [SVN r51396] --- v2/test/test_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/test/test_all.py b/v2/test/test_all.py index f69cb5f36..26e1019a7 100644 --- a/v2/test/test_all.py +++ b/v2/test/test_all.py @@ -80,8 +80,8 @@ def run_tests(critical_tests, other_tests): """ - - pass_count = pass_count + 1 + if passed: + pass_count = pass_count + 1 sys.stdout.flush() # Makes testing under emacs more entertaining. # Erase the file on success.