testing: Properly align numbers of succeeded and failed tests in overview page.

This commit is contained in:
Tobias Brunner 2011-05-04 17:12:33 +02:00
parent e296fc2d26
commit a855af9544

View File

@ -716,11 +716,16 @@ done
#
cat >> $TESTRESULTSHTML << @EOF
<tr>
<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>
</tr>
<tr>
<td><b>Passed:</b></td><td><b><font color="green">$passed_cnt</font></b></td><td>&nbsp;</td><td>&nbsp;</td>
</tr>
<tr>
<td><b>Failed:</b></td><td><b><font color="red">$failed_cnt</font></b></td><td>&nbsp;</td><td>&nbsp;</td>
</tr>
</table>
<p>
<b>Passed: &nbsp; <font color="green">$passed_cnt</font></b><br>
<b>Failed: &nbsp; <font color="red">$failed_cnt</font></b><br>
<p>
</body>
</html>
@EOF