You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2012/08/27 06:00:02 UTC

svn commit: r1377564 - in /subversion/branches/1.7.x: ./ STATUS build/run_tests.py

Author: svn-role
Date: Mon Aug 27 04:00:02 2012
New Revision: 1377564

URL: http://svn.apache.org/viewvc?rev=1377564&view=rev
Log:
Merge r1375089 from trunk:

 * r1375089
   Print "All tests successful" at the end of 'make check'.
   Justification:
     Users ask whether "XFAIL > 0" is a problem.
   Votes:
     +1: danielsh, rhuijben, brane

Modified:
    subversion/branches/1.7.x/   (props changed)
    subversion/branches/1.7.x/STATUS
    subversion/branches/1.7.x/build/run_tests.py

Propchange: subversion/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1375089

Modified: subversion/branches/1.7.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/STATUS?rev=1377564&r1=1377563&r2=1377564&view=diff
==============================================================================
--- subversion/branches/1.7.x/STATUS (original)
+++ subversion/branches/1.7.x/STATUS Mon Aug 27 04:00:02 2012
@@ -122,10 +122,3 @@ Veto-blocked changes:
 
 Approved changes:
 =================
-
- * r1375089
-   Print "All tests successful" at the end of 'make check'.
-   Justification:
-     Users ask whether "XFAIL > 0" is a problem.
-   Votes:
-     +1: danielsh, rhuijben, brane

Modified: subversion/branches/1.7.x/build/run_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/build/run_tests.py?rev=1377564&r1=1377563&r2=1377564&view=diff
==============================================================================
--- subversion/branches/1.7.x/build/run_tests.py (original)
+++ subversion/branches/1.7.x/build/run_tests.py Mon Aug 27 04:00:02 2012
@@ -271,6 +271,12 @@ class TestHarness:
       print("WARNING: no failures, but '%s' exists from a previous run."
             % self.faillogfile)
 
+    # Summary.
+    if xpassed or failed_list:
+      print("SUMMARY: Some tests failed.\n")
+    else:
+      print("SUMMARY: All tests successful.\n")
+
     self._close_log()
     return failed