improve parse_test_results.py

This commit is contained in:
Arvid Norberg 2015-04-04 19:11:35 +00:00
parent 2a3a34bf8d
commit fa450084bd
1 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,8 @@ def style_output(logfile, outfile):
'Invalid write of size' in l or \
'Use of uninitialised value of size' in l or \
'Uninitialised byte(s) found during' in l or \
'Terminated with exception: ' in l or \
'TEST(S) FAILED' in l or \
'points to uninitialised byte(s)' in l:
print >>outfile, '<span class="test-error">%s</span>' % l
elif '**passed**' in l: