update parse_test_results.py

This commit is contained in:
Arvid Norberg 2013-10-23 05:40:30 +00:00
parent 4b1d9cb760
commit 568eac3f42
1 changed files with 4 additions and 1 deletions

View File

@ -45,7 +45,10 @@ def style_output(logfile, outfile):
l = l.encode('utf-8')
l = l.replace('<', '&lt;')
l = l.replace('>', '&gt;')
if 'TEST_CHECK' in l or 'TEST_EQUAL_ERROR' in l or l.startswith('EXIT STATUS: ') or \
if 'TEST_CHECK' in l or \
'TEST_EQUAL_ERROR' in l or \
'"ERROR: "' in l or \
l.startswith('EXIT STATUS: ') or \
' second time limit exceeded' in l or l.startswith('signal: SIG') or \
'jump or move depends on uninitialised value(s)' in l or \
'Invalid read of size' in l or \