Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-01-04 12:38:07 +0000
committerSravan Kumar Lakkimsetti2017-01-04 12:38:07 +0000
commitbfdace07a06e7fd33c7c54e44dbb3c8c5516b511 (patch)
tree8610118621a5d7b23af97d700934a1ca40e2fa4f
parentd1270ada7b4bfcc84a5a14ffe22377fbf13b3a15 (diff)
downloadeclipse.platform.releng.aggregator-bfdace07a06e7fd33c7c54e44dbb3c8c5516b511.tar.gz
eclipse.platform.releng.aggregator-bfdace07a06e7fd33c7c54e44dbb3c8c5516b511.tar.xz
eclipse.platform.releng.aggregator-bfdace07a06e7fd33c7c54e44dbb3c8c5516b511.zip
Bug 509922 - Performance tests are giving invalid test results
Change-Id: I53912127b4e5ecb76542f2ea8999b37072c945c8 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/testScripts/runTests2.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/production/testScripts/runTests2.xml b/production/testScripts/runTests2.xml
index 1a7d526b3..e3220b6f5 100644
--- a/production/testScripts/runTests2.xml
+++ b/production/testScripts/runTests2.xml
@@ -126,8 +126,8 @@
<get
retries="5"
verbose="${selectiveVerbose}"
- src="${buildURL}/eclipse-Automated-Tests-${buildId}.zip"
- dest="${testDir}/eclipse-Automated-Tests-${buildId}.zip" />
+ src="${archiveLocation}/eclipse-Automated-Tests-${buildIdToUse}.zip"
+ dest="${testDir}/eclipse-Automated-Tests-${buildIdToUse}.zip" />
</target>
@@ -475,7 +475,7 @@
setupRepo task. -->
<property
name="repoZip"
- value="${executionDir}/eclipse-junit-tests-${buildId}.zip" />
+ value="${executionDir}/eclipse-junit-tests-${buildIdToUse}.zip" />
<echo message="repoZip: ${repoZip}" />
<antcall target="unzipTestFramework" />
@@ -860,7 +860,7 @@
<property
name="repoZip"
- value="${executionDir}/eclipse-junit-tests-${buildId}.zip" />
+ value="${executionDir}/eclipse-junit-tests-${buildIdToUse}.zip" />
<echo message="repoZip: ${repoZip}" />
<property
@@ -931,7 +931,7 @@
value="${testDir}/testresults" />
<property
name="testFramework"
- value="${testDir}/eclipse-Automated-Tests-${buildId}.zip" />
+ value="${testDir}/eclipse-Automated-Tests-${buildIdToUse}.zip" />
<condition property="testFrameworkExists">
<available file="${testFramework}" />

Back to the top