diff options
author | alon@honor <none@none> | 2010-08-30 21:30:09 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-08-30 21:30:09 -0700 |
commit | 50a1abf1ad3260d63f0ed0b3558e739ce5eb1f41 (patch) | |
tree | 1f491538b2388fd9a54bf773bed34b431f8dc42d /tests/runner.py | |
parent | 100294df68fd63c1a80b81264cb98d772e7e09fc (diff) |
imported patch optimize_enzymatic
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 82109a34..b27d9714 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), 200, '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), 20, 'Parser') os.chdir(cwd) # return if DEBUG: print output |