blob: c94cd00e1a808a2e9c1411a018964744a8bdbdfe [file] [log] [blame]
rsrinivasan01cf8ac2006-04-10 19:37:11 +00001<html>
2<head>
3
4<?php
5 $parts = explode("/", getcwd());
6 $parts2 = explode("-", $parts[count($parts) - 1]);
7 $buildName = $parts2[1];
8
david_williamsbc583e92006-10-25 06:08:40 +00009 echo "<title>Test Results for $buildName </title>";
rsrinivasan01cf8ac2006-04-10 19:37:11 +000010?>
11
12<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
13<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
14</head>
15<body>
16<p><b><font face="Verdana" size="+3">Test Results</font></b> </p>
17
18<table border=0 cellspacing=5 cellpadding=2 width="100%" >
19 <tr>
20 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">
david_williamsbc583e92006-10-25 06:08:40 +000021 Unit Test Results for <?php echo "$buildName"; ?> on Various Platforms and JRE</font></b></td>
rsrinivasan01cf8ac2006-04-10 19:37:11 +000022 </tr>
23</table>
24
25<?php
26$dir = dir("testResults");
27while ($anEntry = $dir->read())
28{
29 if ($anEntry != "." && $anEntry != ".." && $anEntry != "consolelogs" && $anEntry != "html" && $anEntry != "xml")
30 {
31 $link = "testResults/".$anEntry."/results/index.php";
32 echo "<p><a href=\"$link\">$anEntry</a></p>";
33 }
34}
35?>
36
37<table border=0 cellspacing=5 cellpadding=2 width="100%" >
38 <tr>
39 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Unit
david_williamsbc583e92006-10-25 06:08:40 +000040 Test Results for <?php echo "$buildName"; ?> </font></b></td>
rsrinivasan01cf8ac2006-04-10 19:37:11 +000041 </tr>
42</table>
43<p></p><table border="0">
44</table>
45
46<table width="77%" border="1">
47 <tr>
48 <td width="81%"><b>Tests Performed</b></td>
49 <td width="19%"><b>Errors &amp; Failures</b></td>
50 </tr>
51
52 %testresults%
53
54</table>
55<p></p>
56<br>
57<table border=0 cellspacing=5 cellpadding=2 width="100%" >
58 <tr>
59 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">
60 Console output logs
david_williamsbc583e92006-10-25 06:08:40 +000061 <?php echo "$buildName"; ?>
rsrinivasan01cf8ac2006-04-10 19:37:11 +000062 </font></b></td>
63 </tr>
64</table>
65<br>
66These <a href="consoleLogs.php">logs</a> contain the console output captured while
67running the JUnit automated tests. <br>
68<br>
69<table border=0 cellspacing=5 cellpadding=2 width="100%" >
70 <tr>
71 <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Plugins
72 containing compile errors </font></b></td>
73 </tr>
74</table>
75
76<table width="77%" border="1">
77 <tr>
78 <td><b>Compile Logs (Jar Files)</b></td>
79 <td><b>Errors</b></td>
80 <td><b>Warnings</b></td>
81 </tr>
82
83 %compilelogs%
84
85</table>
86
87</body>
88</html>