Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: tools/isolate/worker_pool.py

Issue 10533085: Add a unit test for run_test_cases.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/isolate/run_test_cases_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/isolate/worker_pool.py
diff --git a/tools/isolate/worker_pool.py b/tools/isolate/worker_pool.py
index 363524b11cf6bada7852cbfe4c9d575316a4a427..30f34cc90a9e07856f40433e428d541286e1495c 100644
--- a/tools/isolate/worker_pool.py
+++ b/tools/isolate/worker_pool.py
@@ -136,8 +136,7 @@ class Progress(object):
self.next_line,
' ' * max(0, len(self.last_printed_line) - len(self.next_line)))
self.last_printed_line = self.next_line
- sys.stdout.write(line)
- sys.stdout.flush()
+ sys.stderr.write(line)
def increase_count(self):
with self.lock:
« no previous file with comments | « tools/isolate/run_test_cases_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698