diff options
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 b27d9714..82109a34 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -70,7 +70,7 @@ class T(unittest.TestCase): if DEBUG: print output cwd = os.getcwd() os.chdir(path_from_root(['src'])) - output = timeout_run(Popen([PARSER_ENGINE] + PARSER_OPTS + [JS_COMPILER], stdin=open(filename + '.o.llvm', 'r'), stdout=open(filename + '.o.js', 'w'), stderr=STDOUT), 20, 'Parser') + output = timeout_run(Popen([PARSER_ENGINE] + PARSER_OPTS + [JS_COMPILER], stdin=open(filename + '.o.llvm', 'r'), stdout=open(filename + '.o.js', 'w'), stderr=STDOUT), 200, 'Parser') os.chdir(cwd) # return if DEBUG: print output |