diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-25 19:37:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-25 19:56:24 -0700 |
commit | 068d558edc4eec5f47e3b258c23b8da9e2d22a5e (patch) | |
tree | 19caaa716e5575eccefd83a065187906769f8694 /tests/runner.py | |
parent | 5ef6cf86f436762d7d02dee54e9c09dc19606111 (diff) |
fix bug in aggressive variable elimination and re-enable it
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py index 6fd26a55..a3183b76 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11085,10 +11085,10 @@ f.close() self.get_library('zlib', os.path.join('libz.a'), make_args=['libz.a']), open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(), { - 100: (270, 280), - 250: (330, 360), - 500: (320, 350), - 1000: (440, 480), + 100: (190, 210), + 250: (300, 330), + 500: (250, 310), + 1000: (330, 400), 2000: (450, 500), 5000: (800, 1100), 0: (1500, 1800) @@ -11849,6 +11849,8 @@ f.close() ['asm', 'outline']), (path_from_root('tools', 'test-js-optimizer-asm-outline2.js'), open(path_from_root('tools', 'test-js-optimizer-asm-outline2-output.js')).read(), ['asm', 'outline']), + (path_from_root('tools', 'test-js-optimizer-asm-outline3.js'), open(path_from_root('tools', 'test-js-optimizer-asm-outline3-output.js')).read(), + ['asm', 'outline']), ]: print input output = Popen(listify(NODE_JS) + [path_from_root('tools', 'js-optimizer.js'), input] + passes, stdin=PIPE, stdout=PIPE).communicate()[0] |