Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-06-06 12:40:18 +0000
committerSravan Kumar Lakkimsetti2017-06-06 12:40:18 +0000
commit37c36163974dc94934e75fab4e7ebde745e9ba44 (patch)
tree98cde3805eecd2f1b6cd62bdb4fad7e2f7f2316c
parent18cc92a31eb0e9ea9569323136eebcc72e6b63ca (diff)
downloadeclipse.platform.releng.aggregator-37c36163974dc94934e75fab4e7ebde745e9ba44.tar.gz
eclipse.platform.releng.aggregator-37c36163974dc94934e75fab4e7ebde745e9ba44.tar.xz
eclipse.platform.releng.aggregator-37c36163974dc94934e75fab4e7ebde745e9ba44.zip
Bug 509922 - Performance tests are giving invalid test results
Change-Id: I276e6dbf6230fcc510657b88c97df3ae631da346 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php11
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php8
2 files changed, 0 insertions, 19 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php
index 2493b5d70..f1f9f415d 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php
@@ -120,17 +120,6 @@ if (file_exists("buildlogs/reporeports/index.html")) {
echo"<li>base platform used to start unit tests: $BASEBUILDER_TAG</li> ";
?>
-<?php
- echo "<li>\n";
- $generated=file_exists("performance/global_fp.php");
- if (file_exists("performance/performance.php") && $generated) {
- echo "View the <a href=\"performance/performance.php\">performance test results</a> for the current build.\n";
- } else {
- echo "Performance tests are pending.\n";
- }
- echo "</li>\n";
- echo "</ul>\n";
-?>
</div> <!-- end mid column (logs) section -->
<div class="resultsSection">
<?php
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php
index 8823bcba3..a9d6b6b17 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php
@@ -242,14 +242,6 @@ else {
echo "<li>View the <a class=\"${linkColor}\" title=\"Link test results.\" href=\"testResults.php\">integration and unit test results for the current build.</a></li>\n";
}
- /* performance tests line item */
- $generated=file_exists("performance/global_fp.php");
- if (file_exists("performance/performance.php") && $generated) {
- echo "<li>View the <a href=\"performance/performance.php\">performance test results</a> for the current build.</li>\n";
- } else {
- echo "<li>Performance tests are pending.</li>\n";
- }
-
echo "</ul>\n";
if (file_exists("TEST_INVOCATION_FAILED.html")) {

Back to the top