You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ha...@apache.org on 2019/10/18 14:27:19 UTC

svn commit: r1868596 - /subversion/trunk/build/run_tests.py

Author: hartmannathan
Date: Fri Oct 18 14:27:19 2019
New Revision: 1868596

URL: http://svn.apache.org/viewvc?rev=1868596&view=rev
Log:
Unit test driver: Reinstate SUMMARY and tweak newlines at end of tests

* build/run_tests.py
  (TestHarness.run): Reinstate printing SUMMARY; move the extra
  newline from 'Python version' line to 'SUMMARY' line.

Modified:
    subversion/trunk/build/run_tests.py

Modified: subversion/trunk/build/run_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/build/run_tests.py?rev=1868596&r1=1868595&r2=1868596&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Fri Oct 18 14:27:19 2019
@@ -716,8 +716,8 @@ class TestHarness:
       summary = "Some tests failed"
     else:
       summary = "All tests successful"
-    print("Python version: %d.%d.%d.\n" % sys.version_info[:3])
-    print(summary)
+    print("Python version: %d.%d.%d." % sys.version_info[:3])
+    print("SUMMARY: %s\n" % summary)
 
     self._close_log()
     return failed