Commit 09d55549 authored by Łukasz Nowak's avatar Łukasz Nowak

Implement unknown status

parent e6d8bf48
......@@ -142,9 +142,18 @@ def main():
failure_count=0,
error_count=0
)
pass
else:
# unknown
status_dict.update(
test_count=1,
skip_count=0,
failure_count=0,
error_count=1
)
status_dict['stdout'] = \
'Cannot find success or failure result in the output'
# send only part of the result
status_dict['stdout'] = result[-8192:]
status_dict['stderr'] = result[-8192:]
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