diff options
author | Alon Zakai <azakai@mozilla.com> | 2011-01-19 22:57:52 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2011-01-19 22:57:52 -0800 |
commit | 835183152d232f5076ae024afced5a796f6c48ef (patch) | |
tree | a86ed3244bf747324f99b3cfe46607a5ea25bb58 /tests/runner.py | |
parent | 5a4041ab6925522635d143b7caeb3758c001fde5 (diff) |
lower closure optimizations to SIMPLE; no speed difference, and ADVANCED clash with our _STDIO object
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 804d6a22..06418a29 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1607,7 +1607,7 @@ else: # java -jar CLOSURE_COMPILER --compilation_level ADVANCED_OPTIMIZATIONS --formatting PRETTY_PRINT --variable_map_output_file src.cpp.o.js.vars --js src.cpp.o.js --js_output_file src.cpp.o.cc.js cc_output = Popen(['java', '-jar', CLOSURE_COMPILER, - '--compilation_level', 'ADVANCED_OPTIMIZATIONS', + '--compilation_level', 'SIMPLE_OPTIMIZATIONS', # XXX - ADVANCED clashes with our _STDIO object '--formatting', 'PRETTY_PRINT', '--variable_map_output_file', filename + '.vars', '--js', filename + '.o.js', '--js_output_file', filename + '.cc.js'], stdout=PIPE, stderr=STDOUT).communicate()[0] |