fix msvc link error parsing

This commit is contained in:
Arvid Norberg 2013-06-23 08:08:07 +00:00
parent 465bbbf406
commit d8820a31fc
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ def style_output(o):
ret += '<span class="test-pass">%s</span>\n' % l
elif ': error: ' in l or ': fatal error: ' in l or ' : fatal error ' in l or \
'failed to write output file' in l or ') : error C' in l or \
') : error LNK' in l or ': undefined reference to ' in l:
' : error LNK' in l or ': undefined reference to ' in l:
ret += '<span class="compile-error">%s</span>\n' % l
elif ': warning: ' in l or ') : warning C' in l:
ret += '<span class="compile-warning">%s</span>\n' % l