Author: philip
Date: Thu Dec 20 13:28:24 2012
New Revision: 1424455
URL: http://svn.apache.org/viewvc?rev=1424455&view=rev
Log:
* build/run_tests.py
(_run_test): Drop the constant "Running tests in" to increase the
resolution of the progress bar.
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=1424455&r1=1424454&r2=1424455&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Thu Dec 20 13:28:24 2012
@@ -569,7 +569,7 @@ class TestHarness:
if self.list_tests:
sys.stdout.write('Listing tests in %s' % (test_info, ))
else:
- sys.stdout.write('Running tests in %s' % (test_info, ))
+ sys.stdout.write('%s' % (test_info, ))
sys.stdout.flush()
else:
# ### Hack for --log-to-stdout to work (but not print any dots).
@@ -589,7 +589,6 @@ class TestHarness:
line_length = _get_term_width()
dots_needed = line_length \
- len(test_info) \
- - len('Running tests in ') \
- len('success')
try:
os.chdir(progdir)