# HG changeset patch # User Simon Heimberg # Date 1240384306 -7200 # Node ID c11636f0609effbb14964a6e8939c2e2d3453450 # Parent ccf20c92534b311ceed938c9b198530a27925601 run-tests: fix error when timeout occurs diff -r ccf20c92534b -r c11636f0609e tests/run-tests.py --- a/tests/run-tests.py Tue Apr 21 11:39:31 2009 +0300 +++ b/tests/run-tests.py Wed Apr 22 09:11:46 2009 +0200 @@ -305,7 +305,7 @@ def alarmed(signum, frame): raise Timeout -def run(cmd): +def run(cmd, options): """Run command in a sub-process, capturing the output (stdout and stderr). Return the exist code, and output.""" # TODO: Use subprocess.Popen if we're running on Python 2.4 @@ -411,7 +411,7 @@ signal.alarm(options.timeout) vlog("# Running", cmd) - ret, out = run(cmd) + ret, out = run(cmd, options) vlog("# Ret was:", ret) if options.timeout > 0: