diff options
-rwxr-xr-x | selftest/format-subunit | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/selftest/format-subunit b/selftest/format-subunit index 0d16032afa..2661045bb8 100755 --- a/selftest/format-subunit +++ b/selftest/format-subunit @@ -200,7 +200,9 @@ class PlainFormatter(subunithelper.TestsuiteEnabledTestResult): print "\nA summary with detailed information can be found in:" print " %s" % self.summaryfile - if not self.suitesfailed: + if (not self.suitesfailed and + not self.statistics['TESTS_UNEXPECTED_FAIL'] and + not self.statistics['TESTS_ERROR']): ok = (self.statistics['TESTS_EXPECTED_OK'] + self.statistics['TESTS_EXPECTED_FAIL']) print "\nALL OK (%d tests in %d testsuites)" % (ok, self.suites_ok) |