Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7413ae58b68381d0c8f78f4e54027d89199601e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$testresults="testresults";
include("buildproperties.php");
include ('testConfigs.php');
include ('utilityFunctions.php');
include ('logPhpUtils.php');
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Eclipse Foundation, Inc." />
<meta name="keywords" content="eclipse,project,plug-ins,plugins,java,ide,swt,refactoring,free java ide,tools,platform,open source,development environment,development,ide" />
<link rel="stylesheet" type="text/css" href="../../../eclipse.org-common/stylesheets/visual.css" media="screen" />
<link rel="stylesheet" type="text/css" href="../../../eclipse.org-common/stylesheets/layout.css" media="screen" />
<link rel="stylesheet" type="text/css" href="../../../eclipse.org-common/stylesheets/print.css" media="print" />

<title>Test Logs for <?= $BUILD_ID ?></title>
<style type="text/css">
  p {text-indent: 30pt;}
</style>

<script type="text/javascript">
<![CDATA[
sfHover = function() {
  var sfEls = document.getElementById("leftnav").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
    sfEls[i].onmouseover=function() {
      this.className+=" sfhover";
    }
    sfEls[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
]]>
</script>
</head>
<body>

<div id="leftcol">
<ul id="leftnav">
<li><a href="logs.php">Logs</a></li>
<li><a href="testResults.php#UnitTest">Unit Test Results</a></li>
<li><a href="testResults.php#PluginsErrors">Plugins Containing Compile Errors</a></li>
</ul>
</div>

<div id="midcolumn">
<div class="homeitem3col">
<h1>Unit Test Logs for <?= $BUILD_ID ?></h1>


<!-- 
     javaDoc logs are "at the top" of the compile logs directory, having been 
     copied there by "helper.xml". Seems they could easily go into their own directory, 
     and if so, then there is a releng test that would have to change too, either simply 
     changing their location in the test.xml, or, changing to whole test to it would know
     where to find their special directory, and then loop through the whole directory. 
-->
<h2><a name="javadoc" id="javadoc"></a>Javadoc Logs</h2>
<ul>
<?php
listLogs("compilelogs");
?>
</ul>

<h2><a name="console" id="console"></a>Console Logs</h2>
<p>These logs contain the console output captured while running the JUnit automated tests.</p>

<?php
listLogs("$testresults/consolelogs");
listDetailedLogs($testresults,$expectedTestConfigs[0]);
listDetailedLogs($testresults,$expectedTestConfigs[1]);
listDetailedLogs($testresults,$expectedTestConfigs[2]);
listDetailedLogs($testresults,$expectedTestConfigs[3]);
?>

</div>
</div>
</body>
</html>
 

Back to the top