| <html> |
| <head> |
| |
| <?php |
| $parts = explode("/", getcwd()); |
| $parts2 = explode("-", $parts[count($parts) - 1]); |
| $buildName = $parts2[1]; |
| |
| echo "<title>Test Results for $buildName </title>"; |
| ?> |
| |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css"> |
| </head> |
| <body> |
| <p><b><font face="Verdana" size="+3">Test Results</font></b> </p> |
| |
| <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| <tr> |
| <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica"> |
| Unit Test Results for <?php echo "$buildName"; ?> on Various Platforms and JRE</font></b></td> |
| </tr> |
| </table> |
| |
| <?php |
| $dir = dir("testResults"); |
| while ($anEntry = $dir->read()) |
| { |
| if ($anEntry != "." && $anEntry != ".." && $anEntry != "consolelogs" && $anEntry != "html" && $anEntry != "xml") |
| { |
| $link = "testResults/".$anEntry."/results/index.php"; |
| echo "<p><a href=\"$link\">$anEntry</a></p>"; |
| } |
| } |
| ?> |
| |
| <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| <tr> |
| <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Unit |
| Test Results for <?php echo "$buildName"; ?> </font></b></td> |
| </tr> |
| </table> |
| <p></p><table border="0"> |
| </table> |
| |
| <table width="77%" border="1"> |
| <tr> |
| <td width="81%"><b>Tests Performed</b></td> |
| <td width="19%"><b>Errors & Failures</b></td> |
| </tr> |
| |
| %testresults% |
| |
| </table> |
| <p></p> |
| <br> |
| <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| <tr> |
| <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica"> |
| Console output logs |
| <?php echo "$buildName"; ?> |
| </font></b></td> |
| </tr> |
| </table> |
| <br> |
| These <a href="consoleLogs.php">logs</a> contain the console output captured while |
| running the JUnit automated tests. <br> |
| <br> |
| <table border=0 cellspacing=5 cellpadding=2 width="100%" > |
| <tr> |
| <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Plugins |
| containing compile errors </font></b></td> |
| </tr> |
| </table> |
| |
| <table width="77%" border="1"> |
| <tr> |
| <td><b>Compile Logs (Jar Files)</b></td> |
| <td><b>Errors</b></td> |
| <td><b>Warnings</b></td> |
| </tr> |
| |
| %compilelogs% |
| |
| </table> |
| |
| </body> |
| </html> |