diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-04 21:30:26 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-04 21:30:26 -0800 |
commit | f4af7740c155f378199ab5a236124d2d5813998c (patch) | |
tree | 9123b5460d420678c3a4b21d06c90c8464d7e6b0 /tests | |
parent | 334bd00745bb082ee1778f672361df1b8b13125a (diff) |
remove warning on relooper slowness - it is reasonably fast at this point
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 311c8d21..aaa9cf69 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5545,7 +5545,6 @@ Options that are modified or new in %s include: assert os.path.exists('something.bc'), output[1] output = Popen([compiler, 'something.bc', '-o', 'something.js'] + bc_params, stdout=PIPE, stderr=PIPE).communicate() assert os.path.exists('something.js'), output[1] - assert ('warning: The relooper optimization can be very slow.' in output[1]) == (opt_level >= 2), 'relooper warning should appear in opt >= 2' assert ('Warning: Applying some potentially unsafe optimizations!' in output[1]) == (opt_level >= 3), 'unsafe warning should appear in opt >= 3' self.assertContained('hello, world!', run_js('something.js')) |