Now we replace zero char with slash zero.

This commit is contained in:
Timofey 2017-02-22 19:31:55 +03:00 committed by Sergey Yershov
parent 803ba3f449
commit 24150a43d7

View file

@ -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