Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-05-30 11:43:14 +0000
committerSravan Kumar Lakkimsetti2017-05-30 11:43:14 +0000
commit843903976ddf17bf27cbac94e249d270fd759035 (patch)
tree7d111a0017ce16c52ea4ce2ea47b0cdf90c290cb /production/testScripts
parent13f643516fec477a8c98e175174827953cf0dacb (diff)
downloadeclipse.platform.releng.aggregator-843903976ddf17bf27cbac94e249d270fd759035.tar.gz
eclipse.platform.releng.aggregator-843903976ddf17bf27cbac94e249d270fd759035.tar.xz
eclipse.platform.releng.aggregator-843903976ddf17bf27cbac94e249d270fd759035.zip
Bug 509922 - Performance tests are giving invalid test results
Change-Id: I25422113a63b00fd81fb078d0b3f3918ce6ffc91 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/testScripts')
-rw-r--r--production/testScripts/runTests2.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/testScripts/runTests2.xml b/production/testScripts/runTests2.xml
index 1b5199808..7bde22d00 100644
--- a/production/testScripts/runTests2.xml
+++ b/production/testScripts/runTests2.xml
@@ -949,14 +949,14 @@
doing there, if already done. -->
<target name="unzipTestFramework">
<fail unless="testDir" />
- <fail unless="buildId" />
+ <fail unless="buildIdToUse" />
<property
name="testResults"
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