##// END OF EJS Templates
Add message to test output if a test is aborted due to a timeout....
Thomas Arendsen Hein -
r5078:d27ed832 default
parent child Browse files
Show More
@@ -227,6 +227,8 b' def run(cmd):'
227 ret = proc.wait()
227 ret = proc.wait()
228 if ret == 0:
228 if ret == 0:
229 ret = signal.SIGTERM << 8
229 ret = signal.SIGTERM << 8
230 output += ("\n### Abort: timeout after %d seconds.\n"
231 % options.timeout)
230 return ret, splitnewlines(output)
232 return ret, splitnewlines(output)
231
233
232 def run_one(test):
234 def run_one(test):
General Comments 0
You need to be logged in to leave comments. Login now