You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/05/28 03:33:57 UTC

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

Author: hwright
Date: Fri May 28 01:33:57 2010
New Revision: 949062

URL: http://svn.apache.org/viewvc?rev=949062&view=rev
Log:
* build/run_tests.py
  (_run_test): Bump the test result output over a few characters, as we
    now have longer test names.

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=949062&r1=949061&r2=949062&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Fri May 28 01:33:57 2010
@@ -235,7 +235,7 @@ class TestHarness:
       # Using write here because we don't want even a trailing space
       test_info = '%s [%d/%d]' % (progbase, test_nr + 1, total_tests)
       sys.stdout.write('Running tests in %s' % (test_info, ))
-      sys.stdout.write('.'*(35 - len(test_info)))
+      sys.stdout.write('.'*(40 - len(test_info)))
 
     log.write('START: %s\n' % progbase)
     log.flush()