Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalyan Prasad Tatavarthi2018-09-25 08:29:24 +0000
committerKalyan Prasad Tatavarthi2018-09-25 08:29:24 +0000
commit9e4cee89ffb62ac836a9ce04027c41b3e899c285 (patch)
tree0ae1123fb622eeacd57e9d752192f0983629fa65
parent2e86f72d376cb29d73dbb4a2684ba419c8e89eff (diff)
downloadeclipse.platform.releng.buildtools-9e4cee89ffb62ac836a9ce04027c41b3e899c285.tar.gz
eclipse.platform.releng.buildtools-9e4cee89ffb62ac836a9ce04027c41b3e899c285.tar.xz
eclipse.platform.releng.buildtools-9e4cee89ffb62ac836a9ce04027c41b3e899c285.zip
Bug 539414 - Update the Test Run location on the IBuild test results
page Change-Id: Ifec8c12779f211eb562d77f91367ab197185e6e3 Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
-rw-r--r--bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
index 2544105..fb04c89 100644
--- a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
+++ b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
@@ -948,8 +948,7 @@ public class TestResultsGenerator extends Task {
htmlString = htmlString + EOL + "<h3 id=\"UnitTest\">Unit Test Results</h3>" + EOL;
htmlString = htmlString
- + "<p>The unit tests are run on the <a href=\"https://hudson.eclipse.org/shared/view/Eclipse%20and%20Equinox/\">shared Hudson instance</a>"
- + " and the <a href=\"https://hudson.eclipse.org/platform/view/Unit%20Tests/\">platform Hudson instance</a>.</p>"
+ + "<p>The unit tests are run on the <a href=\"https://ci.eclipse.org/releng/view/Automated%20tests/\">releng ci instance</a>.</p>"
+ EOL;
htmlString = htmlString + "<p>The table shows the unit test results for this build on the platforms" + EOL;

Back to the top