diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-19 10:47:22 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-19 10:47:22 -0700 |
commit | 93a3268b6a42c0ea5df36bbd99510655e1ce4fc3 (patch) | |
tree | feb5363a512a45b15a3266ed149d65c16d215ec1 /tests | |
parent | e24923c6b98e8de99582e4e0c532134ef19c2282 (diff) |
ensure a final return after inlining, if necessary
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 8ec4591a..b1a9e6b1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10842,7 +10842,7 @@ f.close() for engine in JS_ENGINES: out = run_js('test.js', engine=engine, stderr=PIPE, full_output=True) self.assertContained(expected, out) - #if engine == SPIDERMONKEY_ENGINE: self.validate_asmjs(out) + if engine == SPIDERMONKEY_ENGINE: self.validate_asmjs(out) low = expected_ranges[outlining_limit][0] seen = max(measure_funcs('test.js').values()) high = expected_ranges[outlining_limit][1] |