Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-04-03 14:26:24 +0000
committerAlexander Kurtakov2020-04-03 14:26:24 +0000
commit83f0fbd3fd5f26b0ac4aae9e1a629b60b462d6fe (patch)
treec83db3a2faf73bbaeb1ef6cabfb17c79935b0133 /production/testScripts/configuration/sdk.tests/testScripts/test.xml
parentbdb073909c17412d91d748968b7d109e58c501a0 (diff)
downloadeclipse.platform.releng.aggregator-83f0fbd3fd5f26b0ac4aae9e1a629b60b462d6fe.tar.gz
eclipse.platform.releng.aggregator-83f0fbd3fd5f26b0ac4aae9e1a629b60b462d6fe.tar.xz
eclipse.platform.releng.aggregator-83f0fbd3fd5f26b0ac4aae9e1a629b60b462d6fe.zip
Bug 561732 - Disable failing CVS tests
Stop running and publishing cvs.core tests. Change-Id: I7d7ae9702cb8c9b82c91168354bd30bf33cbe33c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'production/testScripts/configuration/sdk.tests/testScripts/test.xml')
-rw-r--r--production/testScripts/configuration/sdk.tests/testScripts/test.xml62
1 files changed, 0 insertions, 62 deletions
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/test.xml b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
index ad8d66e1c..1a9adc3a3 100644
--- a/production/testScripts/configuration/sdk.tests/testScripts/test.xml
+++ b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
@@ -53,14 +53,6 @@
value="org.eclipse.cvs.feature.group">
<equals
arg1="${testPlugin}"
- arg2="org.eclipse.team.tests.cvs.core" />
- </condition>
-
- <condition
- property="extraIU"
- value="org.eclipse.cvs.feature.group">
- <equals
- arg1="${testPlugin}"
arg2="org.eclipse.team.tests.core" />
</condition>
@@ -1410,50 +1402,6 @@
<echo message="J2SE-6.0: ${J2SE-6.0}" />
<echo message="J2SE-5.0: ${J2SE-5.0}" />
</target>
- <target
- name="checkCVSPropExists"
- if="teamcvs">
- <condition property="cvsPropertiesAvailable">
- <available file="${cvstest.properties}" />
- </condition>
- </target>
- <target
- name="getcvstestProperties"
- if="cvsPropertiesAvailable"
- depends="checkCVSPropExists">
- <!--
- TODO: cvstest.properties (file location) is currently
- hard coded in 'runTest2.xml' and passed along this 'test.xml'
- via production.properties. Would be better to have the file location
- be part of the platform specific properties files, as we do with "jvm"
- -->
- <echo message="cvstest.properties file: ${cvstest.properties}" />
- <property file="${cvstest.properties}" />
-
- </target>
- <target
- name="configureTeamTest"
- depends="getcvstestProperties"
- if="teamcvs">
- <!-- Fill in cvs repository information -->
- <replace
- file="${eclipse-home}/plugins/${org.eclipse.team.tests.cvs.core}/repository.properties"
- token="@user@"
- value="${cvs_user}" />
- <replace
- file="${eclipse-home}/plugins/${org.eclipse.team.tests.cvs.core}/repository.properties"
- token="@password@"
- value="${cvs_password}" />
- <replace
- file="${eclipse-home}/plugins/${org.eclipse.team.tests.cvs.core}/repository.properties"
- token="@host@"
- value="${cvs_host}" />
- <replace
- file="${eclipse-home}/plugins/${org.eclipse.team.tests.cvs.core}/repository.properties"
- token="@root@"
- value="${cvs_root}" />
- </target>
-
<macrodef name="runTests">
<attribute name="testPlugin" />
@@ -2090,15 +2038,6 @@
</target>
<target
- name="teamcvs"
- depends="init">
- <property
- name="teamcvs"
- value="true" />
- <runTests testPlugin="org.eclipse.team.tests.cvs.core" />
- </target>
-
- <target
name="ui"
depends="init">
<runTests testPlugin="org.eclipse.ui.tests" />
@@ -2566,7 +2505,6 @@
<antcall target="osgi" />
<antcall target="coreresources" />
<antcall target="equinoxp2" />
- <antcall target="teamcvs" />
<antcall target="jface" />
<antcall target="jfacetext" />
<antcall target="ui" />

Back to the top