aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-08 17:07:11 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-08 17:07:11 -0700
commit94ef129de4fa1abff153086d7c5c22b3adffae34 (patch)
tree9195e73521d7d2781fe6de302dc7b9df794802ea
parent350a2b08b6b19e57abc57e6ae607edae97a66fa8 (diff)
parent69ac92ea4fd158657e0406fe9fdb36026f77e5b2 (diff)
Merge pull request #1040 from juj/fix_test_chunking_windows
Remove '.' print in tools/js_optimizer.py. Fixes other.test_chunking on Windows.
-rw-r--r--tools/js_optimizer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/js_optimizer.py b/tools/js_optimizer.py
index 4d37408c..b11d0449 100644
--- a/tools/js_optimizer.py
+++ b/tools/js_optimizer.py
@@ -100,7 +100,7 @@ def run_on_chunk(command):
f = open(filename, 'w')
f.write(output)
f.close()
- if DEBUG: print >> sys.stderr, '.'
+ if DEBUG and not shared.WINDOWS: print >> sys.stderr, '.' # Skip debug progress indicator on Windows, since it doesn't buffer well with multiple threads printing to console.
return filename
def run_on_js(filename, passes, js_engine, jcache):