Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2002-03-21 15:52:29 +0000
committerJean Michel-Lemieux2002-03-21 15:52:29 +0000
commit1b3b14e58c9d7e26e1791ed491497c5d6b35c5ac (patch)
tree20de1d604baf161d6455005ee7b027181e8d83d2 /tests/org.eclipse.team.tests.core/test.xml
parent87342680a369fe6cacc93555e79e188da4417072 (diff)
downloadeclipse.platform.team-1b3b14e58c9d7e26e1791ed491497c5d6b35c5ac.tar.gz
eclipse.platform.team-1b3b14e58c9d7e26e1791ed491497c5d6b35c5ac.tar.xz
eclipse.platform.team-1b3b14e58c9d7e26e1791ed491497c5d6b35c5ac.zip
*** empty log message ***
Diffstat (limited to 'tests/org.eclipse.team.tests.core/test.xml')
-rw-r--r--tests/org.eclipse.team.tests.core/test.xml21
1 files changed, 4 insertions, 17 deletions
diff --git a/tests/org.eclipse.team.tests.core/test.xml b/tests/org.eclipse.team.tests.core/test.xml
index e81ca551e..2e0df266c 100644
--- a/tests/org.eclipse.team.tests.core/test.xml
+++ b/tests/org.eclipse.team.tests.core/test.xml
@@ -8,10 +8,6 @@
<property name="eclipse-home" value="${basedir}/../../"/>
<property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
- <!-- get the repository.properties which identify the cvs test repository -->
- <property name="team-home" value="${eclipse-home}/plugins/org.eclipse.team.tests.core"/>
- <property file="${team-home}/repository.properties"/>
-
<!-- This target holds all initialization code that needs to be done for -->
<!-- all tests that are to be run. Initialization for individual tests -->
<!-- should be done within the body of the suite target. -->
@@ -21,25 +17,16 @@
<!-- This target defines the tests that need to be run. -->
<target name="suite">
- <property name="location" value="${eclipse-home}/cvs_sniff_folder"/>
+ <property name="location" value="${eclipse-home}/team_test_workspace"/>
<delete dir="${location}" quiet="true"/>
- <!-- Session Test ** CVS Provider ** -->
+ <!-- Session Test ** Team Core ** -->
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="vmargs" value="-Declipse.cvs.properties=${team-home}/repository.properties"/>
<property name="data-dir" value="${location}"/>
<property name="plugin-name" value="org.eclipse.team.tests.cvs.core"/>
- <property name="classname" value="org.eclipse.team.tests.ccvs.core.provider.AllTestsProvider"/>
+ <property name="classname" value="org.eclipse.team.tests.core.AllTeamTests"/>
</ant>
- <!-- Session Test ** CVS Resources ** -->
- <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="vmargs" value="-Declipse.cvs.properties=${team-home}/repository.properties"/>
- <property name="data-dir" value="${location}"/>
- <property name="plugin-name" value="org.eclipse.team.tests.cvs.core"/>
- <property name="classname" value="org.eclipse.team.tests.ccvs.core.cvsresources.AllTestsCVSResource"/>
- </ant>
-
</target>
<!-- This target holds code to cleanup the testing environment after the tests -->
@@ -52,7 +39,7 @@
<target name="run" depends="init,suite,cleanup">
<ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
<property name="includes" value="org*.xml"/>
- <property name="output-file" value="cvs-tests-summary.xml"/>
+ <property name="output-file" value="org.eclipse.team.tests.core.xml"/>
</ant>
</target>

Back to the top