aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-21 20:38:37 -0700
committeralon@honor <none@none>2010-09-21 20:38:37 -0700
commit427206373413805fef3c56915fa6e1ac9dd93627 (patch)
tree1c19679707ba330607b19806c60b099cd412fdbc /tests/runner.py
parentab582256db454b3ccab074058941311845746f8b (diff)
fix some relooper bugs, and EXECUTION_TIMEOUT setting for debugging such problems
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index b138e61f..3f14a4ac 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -75,7 +75,7 @@ class T(unittest.TestCase):
if output is not None and 'Traceback' in output: print output; assert (0) # 'generating JavaScript failed'
if DEBUG: print "\nGenerated JavaScript:\n\n===\n\n%s\n\n===\n\n" % output
# if not DEBUG:
- js_output = timeout_run(Popen([JS_ENGINE] + JS_ENGINE_OPTS + [filename + '.o.js'] + args, stdout=PIPE, stderr=STDOUT), 20, 'Execution')
+ js_output = timeout_run(Popen([JS_ENGINE] + JS_ENGINE_OPTS + [filename + '.o.js'] + args, stdout=PIPE, stderr=STDOUT), 60, 'Execution')
if output_nicerizer is not None:
js_output = output_nicerizer(js_output)
# else: