Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/python/testlog_to_xml_converter.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/python/testlog_to_xml_converter.py b/tools/python/testlog_to_xml_converter.py
index 5c15bb99f2..62f8e3a2ba 100755
--- a/tools/python/testlog_to_xml_converter.py
+++ b/tools/python/testlog_to_xml_converter.py
@@ -134,8 +134,6 @@ class Parser:
return self.var_should_pass
-
-
def check_for_exe_boundaries(self, line):
if line.startswith(PrefixesInLog.BEGIN):
if self.current_exe: #if we never had an End to a Beginning
@@ -204,6 +202,7 @@ class Parser:
if line == "All tests passed." or re.match("\d{1,} tests failed", line, re.IGNORECASE):
self.var_should_pass = True
return False
+ line = line.replace("\0", "\\0")
self.test_info.append_comment(line)
return False