Author: rhuijben
Date: Sun Apr 19 13:22:15 2015
New Revision: 1674624

URL: http://svn.apache.org/r1674624
Log:
* win-tests.py
  (start): Add an stdout, stderr fflush to avoid the output of htpasswd being
    shown sometime after starting the first test.

Modified:
    subversion/trunk/win-tests.py

Modified: subversion/trunk/win-tests.py
URL: 
http://svn.apache.org/viewvc/subversion/trunk/win-tests.py?rev=1674624&r1=1674623&r2=1674624&view=diff
==============================================================================
--- subversion/trunk/win-tests.py (original)
+++ subversion/trunk/win-tests.py Sun Apr 19 13:22:15 2015
@@ -637,6 +637,10 @@ class Httpd:
     else:
       self._start_daemon()
 
+    # Avoid output from starting and preparing between test results
+    sys.stderr.flush()
+    sys.stdout.flush()
+
   def stop(self):
     if self.service:
       self._stop_service()


Reply via email to