Skip to content
Snippets Groups Projects

Update check_log patterns and its usage across trigger tests

Merged Rafal Bielski requested to merge rbielski/athena:checklog-updates into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -46,7 +46,6 @@ traceback = [
'Traceback',
'Shortened traceback',
'^Algorithm stack',
'Thread .*0x',
'^#\d+\s*0x\w+ in '
]
@@ -103,7 +102,9 @@ def parseConfig():
print('Ignoring warnings/error patterns defined in ' + args.config)
for aline in configFile:
if 'ignore' in aline:
line = aline.strip('ignore').strip().strip("'")
line = aline.strip('ignore').strip()
if line.startswith('\'') and line.endswith('\''):
line = line[1:-1]
ignorePattern.append(line)
noConfig = False
except:
Loading