mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
Genreral cleanup (remove jdt refrences) and move closer to being automatable
This commit is contained in:
parent
7f5f0e1f71
commit
7e5e732224
6 changed files with 37 additions and 18 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-12-17 Peter Graves
|
||||
|
||||
* plugin.xml,test.xml: Some simple cleanups to remove refrences to the jdt and
|
||||
to move closer to automated running
|
||||
|
||||
2002-11-27 Alain Magloire
|
||||
|
||||
* model/org/eclipse/cdt/core/model/tests/CModelTests.java:
|
||||
|
|
|
@ -2,10 +2,13 @@
|
|||
<plugin
|
||||
id="org.eclipse.cdt.ui.tests"
|
||||
name="org.eclipse.cdt.ui.tests"
|
||||
version="1.0.0">
|
||||
version="1.0.0"
|
||||
class="org.eclipse.cdt.testplugin.CTestPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="cdttests.jar"/>
|
||||
<library name="cdttests.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.apache.xerces"/>
|
||||
|
@ -17,6 +20,7 @@
|
|||
<import plugin="org.eclipse.swt"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.junit"/>
|
||||
<import plugin="org.eclipse.update.core"/>
|
||||
</requires>
|
||||
|
||||
|
||||
|
|
|
@ -3,10 +3,11 @@
|
|||
<project name="testsuite" default="run" basedir=".">
|
||||
<!-- The property ${eclipse-home} should be passed into this script -->
|
||||
<!-- Set a meaningful default value for when it is not. -->
|
||||
<property name="eclipse-home" value="${basedir}\..\.."/>
|
||||
<!-- <property name="eclipse-home" value="${basedir}\..\.."/> -->
|
||||
<property name="eclipse-home" value="${basedir}"/>
|
||||
|
||||
<!-- sets the properties eclipse-home, and library-file -->
|
||||
<property name="plugin-name" value="org.eclipse.jdt.ui.tests"/>
|
||||
<property name="plugin-name" value="org.eclipse.cdt.ui.tests"/>
|
||||
<property name="library-file"
|
||||
value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
|
||||
|
||||
|
@ -22,14 +23,14 @@
|
|||
|
||||
<!-- This target defines the tests that need to be run. -->
|
||||
<target name="suite">
|
||||
<property name="jdt-folder"
|
||||
value="${eclipse-home}/jdt_folder"/>
|
||||
<delete dir="${jdt-folder}" quiet="true"/>
|
||||
<property name="cdt-folder"
|
||||
value="${eclipse-home}/cdt_folder"/>
|
||||
<delete dir="${cdt-folder}" quiet="true"/>
|
||||
<ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
|
||||
<property name="data-dir" value="${jdt-folder}"/>
|
||||
<property name="data-dir" value="${cdt-folder}"/>
|
||||
<property name="plugin-name" value="${plugin-name}"/>
|
||||
<property name="classname"
|
||||
value="org.eclipse.jdt.ui.tests.AutomatedSuite"/>
|
||||
value="org.eclipse.cdt.core.model.tests.AllCoreTests"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2002-12-17 Peter Graves
|
||||
|
||||
* plugin.xml,test.xml: Some simple cleanups to remove refrences to the jdt and
|
||||
to move closer to automated running.
|
||||
|
||||
2002-10-30 Alain Magloire
|
||||
|
||||
* core/org/eclipse/cdt/debug/core/tests/TargetTests.java: Test number
|
||||
|
|
|
@ -2,10 +2,13 @@
|
|||
<plugin
|
||||
id="org.eclipse.cdt.debug.ui.tests"
|
||||
name="org.eclipse.cdt.debug.ui.tests"
|
||||
version="1.0.0">
|
||||
version="1.0.0"
|
||||
class="org.eclipse.cdt.debug.testplugin.CTestPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="cdtdebugtests.jar"/>
|
||||
<library name="cdtdebugtests.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.apache.xerces"/>
|
||||
|
@ -18,6 +21,7 @@
|
|||
<import plugin="org.eclipse.cdt.debug.mi.core"/>
|
||||
<import plugin="org.eclipse.cdt.core"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.update.core"/>
|
||||
</requires>
|
||||
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<project name="testsuite" default="run" basedir=".">
|
||||
<!-- The property ${eclipse-home} should be passed into this script -->
|
||||
<!-- Set a meaningful default value for when it is not. -->
|
||||
<property name="eclipse-home" value="${basedir}\..\.."/>
|
||||
<property name="eclipse-home" value="${basedir}"/>
|
||||
|
||||
<!-- sets the properties eclipse-home, and library-file -->
|
||||
<property name="plugin-name" value="org.eclipse.jdt.ui.tests"/>
|
||||
<property name="plugin-name" value="org.eclipse.cdt.debug.ui.tests"/>
|
||||
<property name="library-file"
|
||||
value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
|
||||
|
||||
|
@ -22,14 +22,14 @@
|
|||
|
||||
<!-- This target defines the tests that need to be run. -->
|
||||
<target name="suite">
|
||||
<property name="jdt-folder"
|
||||
value="${eclipse-home}/jdt_folder"/>
|
||||
<delete dir="${jdt-folder}" quiet="true"/>
|
||||
<property name="cdt-folder"
|
||||
value="${eclipse-home}/cdt_folder"/>
|
||||
<delete dir="${cdt-folder}" quiet="true"/>
|
||||
<ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
|
||||
<property name="data-dir" value="${jdt-folder}"/>
|
||||
<property name="data-dir" value="${cdt-folder}"/>
|
||||
<property name="plugin-name" value="${plugin-name}"/>
|
||||
<property name="classname"
|
||||
value="org.eclipse.jdt.ui.tests.AutomatedSuite"/>
|
||||
value="org.eclipse.cdt.debug.core.tests.AllDebugTests"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue