ndai | 91f5c9b | 2006-03-12 13:56:45 +0000 | [diff] [blame] | 1 | <P> |
| 2 | <A NAME="unit"></A> |
| 3 | * Missing reference data. Build used for comparison specified in ending parenthesis. |
| 4 | <BR>green: faster, less memory |
| 5 | <BR>red: slower, more memory |
| 6 | <BR>x axis: difference between current value and baseline value as percentage |
| 7 | <BR> |
| 8 | </P> |
| 9 | |
| 10 | <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| 11 | <tr> |
| 12 | <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica"> |
| 13 | Detailed performance data grouped by scenario prefix |
| 14 | </font></b></td> |
| 15 | </tr> |
| 16 | </table> |
| 17 | |
| 18 | <?php |
| 19 | $dir = dir("."); |
| 20 | while ($anEntry = $dir->read()) |
| 21 | { |
| 22 | if ($anEntry != "global.php" && substr($anEntry, strlen($anEntry) - 4) == ".php") |
| 23 | { |
| 24 | echo "<a href=\"$anEntry\">$anEntry</a><br>"; |
| 25 | } |
| 26 | } |
| 27 | ?> |
| 28 | |
| 29 | <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| 30 | <tr> |
| 31 | <td> </td> |
| 32 | </tr> |
| 33 | </table> |
| 34 | |
| 35 | <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| 36 | <tr> |
| 37 | <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica"> |
| 38 | Performance JUnit test results for <?php echo "$buildType $buildName"; ?> |
| 39 | </font></b></td> |
| 40 | </tr> |
| 41 | </table> |
| 42 | |
| 43 | <font color="#FFFFFF" face="Arial,Helvetica"> |
| 44 | <table border=1" width="100%"> |
| 45 | <tr> |
| 46 | <td width="100%"><b>Tests Performed</b></td> |
| 47 | </tr> |
| 48 | <?php |
| 49 | $xmlDir = dir("../xml"); |
| 50 | while ($xmlEntry = $xmlDir->read()) |
| 51 | { |
| 52 | if ($xmlEntry != "." && $xmlEntry != "..") |
| 53 | { |
| 54 | $htmlEntry = substr($xmlEntry, 0, strlen($xmlEntry) - 3) . "html"; |
| 55 | echo "<tr>"; |
| 56 | echo "<td><a href=\"../html/$htmlEntry\">$htmlEntry</a></td>"; |
| 57 | echo "</tr>"; |
| 58 | } |
| 59 | } |
| 60 | ?> |
| 61 | </table> |
| 62 | </html> |