forked from organicmaps/organicmaps
Added more characters for replacement in log to xml converter.
This commit is contained in:
parent
fce669d15b
commit
2edc2fc85d
1 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,8 @@ import xml.etree.ElementTree as ElementTree
|
|||
from optparse import OptionParser
|
||||
import re
|
||||
|
||||
REPLACE_CHARS_RE = re.compile("[\x00-\x1f]")
|
||||
|
||||
|
||||
class PrefixesInLog:
|
||||
OK = "OK"
|
||||
|
@ -202,7 +204,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")
|
||||
line = REPLACE_CHARS_RE.sub("_", line)
|
||||
self.test_info.append_comment(line)
|
||||
return False
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue