aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-04-23 11:59:48 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-04-23 11:59:48 -0700
commit8246b58cf7f829404f14786c371f6f86eacc5301 (patch)
tree0059cb31c547a5b341479b88f3d405abe4db44ae
parentd0f65558b6f4bc405ad869ab8f77f26ae1fcb6e0 (diff)
stop disabling spidermonkey -n in test runner
-rwxr-xr-xtests/runner.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index ff4fc1d4..e577512f 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -355,7 +355,6 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv) and 'brows
js_engines = filter(lambda engine: engine not in self.banned_js_engines, js_engines)
if len(js_engines) == 0: return self.skip('No JS engine present to run this test with. Check %s and settings.py and the paths therein.' % EM_CONFIG)
for engine in js_engines:
- engine = filter(lambda arg: arg != '-n', engine) # SpiderMonkey issue 716255
js_output = self.run_generated_code(engine, filename + '.o.js', args)
if output_nicerizer is not None:
js_output = output_nicerizer(js_output)