org.eclipse.core.expressions.tests/test.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (download) (as text) (annotate)
Tue Dec 2 20:47:27 2008 UTC (11 months, 3 weeks ago) by mkeller
Branch: MAIN
CVS Tags: v20090113-0900, v20090224-0800, v20090311-0800, v20090303-0800, v20081210-1300, v20081216-0800, v20081202-1600, v20081207-2000, v20081209-0100, v20090309-1800, v20090125-2000, v20090824, R3_5, v20090106-0800, v20090217-0800, v20090210-0800, v20090203-1200, v20090120-0800, v20090317-0800, v20090324-0800, v20090308, R3_5_1, HEAD
Branch point for: JUnit4_incubator_bug153429
Changes since 1.3: +1 -1 lines
run in headless session
<?xml version="1.0" encoding="UTF-8"?>

<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}\..\.."/>

  <!-- sets the properties eclipse-home, and library-file -->
  <property name="plugin-name" value="org.eclipse.core.expressions.tests"/>
  <property name="library-file"
            value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>

  <!-- 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. -->
  <target name="init">
    <tstamp/>
    <delete>
      <fileset dir="${eclipse-home}" includes="org*.xml"/>
    </delete>
  </target>

  <!-- This target defines the tests that need to be run. -->
  <target name="suite">
    <property name="expressions-folder" 
              value="${eclipse-home}/expressions_folder"/>
    <delete dir="${expressions-folder}" quiet="true"/>
    <ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
      <property name="data-dir" value="${expressions-folder}"/>
      <property name="plugin-name" value="${plugin-name}"/>
      <property name="classname" 
                value="org.eclipse.core.internal.expressions.tests.AllTests"/>
    </ant>
  </target>
	
  <!-- Plug-in unloading tests. -->
  <target name="pluginUnloading-suite">
  	<property name="expressions-folder" 
              value="${eclipse-home}/expressions_folder"/>
    <delete dir="${expressions-folder}" quiet="true"/>
    <ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
      <property name="data-dir" value="${expressions-folder}"/>
      <property name="plugin-name" value="${plugin-name}"/>
      <property name="classname" 
                value="org.eclipse.core.internal.expressions.tests.ExpressionTestsPluginUnloading"/>
    </ant>
  </target>

  <!-- This target holds code to cleanup the testing environment after -->
  <!-- after all of the tests have been run. You can use this target to -->
  <!-- delete temporary files that have been created. -->
  <target name="cleanup">
  </target>

  <!-- This target runs the test suite. Any actions that need to happen -->
  <!-- after all the tests have been run should go here. -->
  <target name="run" depends="init,suite,pluginUnloading-suite,cleanup">
    <ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
      <property name="includes" value="org*.xml"/>
      <property name="output-file" value="${plugin-name}.xml"/>
    </ant>
  </target>

  <target name="performance">
  </target>
	
</project>