Commit a0d5dc4f authored by Łukasz Nowak's avatar Łukasz Nowak

Do not pass on timeout

If timeout is reached without any information send fail with error.
parent f5d37726
...@@ -163,10 +163,10 @@ def main(): ...@@ -163,10 +163,10 @@ def main():
if not result_found: if not result_found:
status_dict['stdout'] = 'Test timed out and no result found.' status_dict['stdout'] = 'Test timed out and no result found.'
status_dict.update( status_dict.update(
test_count=0, test_count=1,
skip_count=0, skip_count=0,
failure_count=0, failure_count=0,
error_count=0 error_count=1
) )
end = time() end = time()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment