Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-11-15 10:06:19 +0000
committerSravan Kumar Lakkimsetti2018-11-15 10:06:19 +0000
commit4c76d7ee9fefd3699dd65e972124f3bc10ebf09e (patch)
tree4594f436269f86f3f7531975a962fba303806269
parent18a1f5c47a9039807aebc6b817f64d769f086b16 (diff)
downloadeclipse.platform.releng.aggregator-4c76d7ee9fefd3699dd65e972124f3bc10ebf09e.tar.gz
eclipse.platform.releng.aggregator-4c76d7ee9fefd3699dd65e972124f3bc10ebf09e.tar.xz
eclipse.platform.releng.aggregator-4c76d7ee9fefd3699dd65e972124f3bc10ebf09e.zip
Bug 538240 - CVS tests blocking the execution of remaining eclipse tests
Change-Id: Iaf888003022c78d36952d11d56c328f70c1bc4cc Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/testScripts/configuration/sdk.tests/testScripts/test.xml74
1 files changed, 73 insertions, 1 deletions
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/test.xml b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
index 2e3684bfe..4b8705bb6 100644
--- a/production/testScripts/configuration/sdk.tests/testScripts/test.xml
+++ b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
@@ -2133,6 +2133,14 @@
</target>
+ <target
+ name="sdkTests"
+ depends="init">
+ <antcall target="quickTests" />
+ <antcall target="sdkLongRunningTests" />
+
+ </target>
+
<!-- This and all the performance specific targets
are temporary, just to help investigate which work, which
don't, etc. -->
@@ -2298,7 +2306,59 @@
</target>
- <!--
+ <target
+ name="sdkLongRunningTests"
+ depends="init">
+
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="start longRunningTests" />
+ </antcall>
+
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="start sdkPlatformLR" />
+ </antcall>
+ <antcall target="sdkPlatformLR" />
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="end sdkPlatformLR" />
+ </antcall>
+
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="start jdtLR" />
+ </antcall>
+ <antcall target="jdtLR" />
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="end jdtLR" />
+ </antcall>
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="start pdeLR" />
+ </antcall>
+ <antcall target="pdeLR" />
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="end pdeLR" />
+ </antcall>
+ <antcall target="markCurrentTime">
+ <param
+ name="message"
+ value="end longRunningTests" />
+ </antcall>
+
+ </target>
+
+ <!--
admittedly, not quite all of 'platform', but for
now serves dual purpose of a "short set" of tests, that area
relatively quick, and relatively reliable on build.eclipse.org hardware
@@ -2371,6 +2431,18 @@
-->
</target>
+ <target
+ name="sdkPlatformLR"
+ depends="init">
+ <antcall target="osgi" />
+ <antcall target="coreresources" />
+ <antcall target="equinoxp2" />
+ <antcall target="jface" />
+ <antcall target="ui" />
+ <antcall target="uiperformance" />
+ </target>
+
+
<target
name="pde"
depends="init">

Back to the top