diff options
author | alon@honor <none@none> | 2010-09-21 20:38:37 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-21 20:38:37 -0700 |
commit | 427206373413805fef3c56915fa6e1ac9dd93627 (patch) | |
tree | 1c19679707ba330607b19806c60b099cd412fdbc /tests/runner.py | |
parent | ab582256db454b3ccab074058941311845746f8b (diff) |
fix some relooper bugs, and EXECUTION_TIMEOUT setting for debugging such problems
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
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: |