diff --git a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java index 5cc6c980a3d605d1fe40ef311ed26f4ab3cedba2..eaf5092fc99fb83971877c5228c6288739588081 100644 --- a/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java +++ b/plugins/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java @@ -706,8 +706,8 @@ public class ResultsSummaryGenerator extends Task { grandTotalTests = grandTotalTests + unitTestResults.getTotalTests(); } - if (unitTestResults.getTotalTime() > 0) { - grandTotalTime = grandTotalTime + unitTestResults.getTotalTime(); + if (unitTestResults.getTime() > 0) { + grandTotalTime = grandTotalTime + unitTestResults.getTime(); } } diff --git a/releng.wtpbuilder/distribution/incubator.site/templateFiles/testResults.php.template b/releng.wtpbuilder/distribution/incubator.site/templateFiles/testResults.php.template index c3d03b0eae55cf360621f21a4d10d5a54b0c07a5..ddad0b782bcb23d0a2994168942a98306cfa7524 100644 --- a/releng.wtpbuilder/distribution/incubator.site/templateFiles/testResults.php.template +++ b/releng.wtpbuilder/distribution/incubator.site/templateFiles/testResults.php.template @@ -90,9 +90,9 @@ while ($anEntry = $dir->read()) <table id=tableunittestdata align = "center" width="75%" border="1"> <tr> <td class="bold" align="center" width="70%">Test Suite</td> - <td class="bold" align="center" width="15%">Errors & Failures</td> - <td class="bold" align="center" width="15%">Total Tests</td> - <td class="bold" align="center" width="15%">Total Time</td> + <td class="bold" align="center" width="10%">Errors & Failures</td> + <td class="bold" align="center" width="10%">Total Tests</td> + <td class="bold" align="center" width="10%">Total Time (s)</td> </tr> diff --git a/releng.wtpbuilder/distribution/wtp.site/templateFiles/testResults.php.template b/releng.wtpbuilder/distribution/wtp.site/templateFiles/testResults.php.template index c3d03b0eae55cf360621f21a4d10d5a54b0c07a5..99c9c9aaf723b5158776200e0908275353c3c3a5 100644 --- a/releng.wtpbuilder/distribution/wtp.site/templateFiles/testResults.php.template +++ b/releng.wtpbuilder/distribution/wtp.site/templateFiles/testResults.php.template @@ -92,7 +92,7 @@ while ($anEntry = $dir->read()) <td class="bold" align="center" width="70%">Test Suite</td> <td class="bold" align="center" width="15%">Errors & Failures</td> <td class="bold" align="center" width="15%">Total Tests</td> - <td class="bold" align="center" width="15%">Total Time</td> + <td class="bold" align="center" width="15%">Total Time (s)</td> </tr>