parse test results fix

This commit is contained in:
Arvid Norberg
2014-03-19 07:32:59 +00:00
parent 5f30b18b2f
commit ca29493cd8

View File

@@ -277,6 +277,7 @@ for branch_name in revs:
print >>details_file, '''<html><head><title>%s %s [%s]</title><style type="text/css">
.passed { background-color: #6f8 }
.failed { background-color: #f68 }
.missing { background-color: #fff }
.crash { background-color: #f08 }
.compile-failed { background-color: #000 }
.timeout { background-color: #86f }
@@ -305,6 +306,12 @@ for branch_name in revs:
print >>details_file, '<table>'
print >>details_file, '<tr><th>%s</th></tr>' % title
if not f in platforms[p][toolset]:
print f
for i in range(len(tests[f])):
print >>html, '<td title="%s"><a class="missing"></a></td>' % (f)
continue
for t in platforms[p][toolset][f]:
details = platforms[p][toolset][f][t]
exitcode = details['status']