diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 13:50:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-24 13:50:10 -0700 |
commit | e94938b90603372d8dadfbbdc0ed4088ef68078b (patch) | |
tree | bc4071d790124cd7c7b3f211401fc7d2d0c81262 /tests | |
parent | 454e20609b2526c2397cb67386fc759df872fd2f (diff) |
relocation pass for shared modules
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 637d2e52..2c459f6f 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11235,6 +11235,8 @@ f.close() ['asm', 'simplifyExpressionsPre']), (path_from_root('tools', 'test-js-optimizer-asm-last.js'), open(path_from_root('tools', 'test-js-optimizer-asm-last-output.js')).read(), ['asm', 'last']), + (path_from_root('tools', 'test-js-optimizer-asm-relocate.js'), open(path_from_root('tools', 'test-js-optimizer-asm-relocate-output.js')).read(), + ['asm', 'relocate']), ]: print input output = Popen(listify(NODE_JS) + [path_from_root('tools', 'js-optimizer.js'), input] + passes, stdin=PIPE, stdout=PIPE).communicate()[0] |