fix parse_test_results.py typo

This commit is contained in:
Arvid Norberg 2013-10-04 04:51:33 +00:00
parent 9d02b478a6
commit 6867b2da3a
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def style_output(o):
'Use of uninitialised value of size' in l or \ 'Use of uninitialised value of size' in l or \
'Uninitialised byte(s) found during' in l: 'Uninitialised byte(s) found during' in l:
ret += '<span class="compile-error">%s</span>\n' % l ret += '<span class="compile-error">%s</span>\n' % l
elif ': warning: ' in l or ') : warning C' in or l \ elif ': warning: ' in l or ') : warning C' in l or \
'Uninitialised value was created by a' in l or \ 'Uninitialised value was created by a' in l or \
'bytes after a block of size' in l: 'bytes after a block of size' in l:
ret += '<span class="compile-warning">%s</span>\n' % l ret += '<span class="compile-warning">%s</span>\n' % l