Commit bb3da7f8 authored by Ivan Tyagov's avatar Ivan Tyagov

Fix unbbound variables so we do not get runTestSuite exception when parsing failed.

parent 5d00d56f
...@@ -36,6 +36,11 @@ def parseTestStdOut(data): ...@@ -36,6 +36,11 @@ def parseTestStdOut(data):
""" """
Parse output of NEO testrunner script. Parse output of NEO testrunner script.
""" """
test_count = 0
error_count = 0
expected_count = 0
skip_count = 0
duration = 0
search = SUMMARY_RE.search(data) search = SUMMARY_RE.search(data)
if search: if search:
groupdict = search.groupdict() groupdict = search.groupdict()
......
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