Skip to content
Snippets Groups Projects
Commit b7baef94 authored by anuraggoel's avatar anuraggoel
Browse files

run-tests: checks behaviour of test on failure while testing

On failure while testing, if this function "result.addFailure(self, str(e))"
returns true then test get 'passed' else count as 'failed'.
parent c5699c2d
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,8 @@
# the stack trace. This is for historical reasons and
# this decision could be revisted in the future,
# especially for PythonTest instances.
result.addFailure(self, str(e))
if result.addFailure(self, str(e)):
success = True
except Exception:
result.addError(self, sys.exc_info())
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment