|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0"?>
-
- <project name="junit-test" basedir="." default="outputTests">
- <property name="showoutput" value="false" />
- <path id="test">
- <pathelement path="${java.class.path}" />
- <pathelement location="../../../../../build/testcases" />
- </path>
-
- <target name="cleanup">
- <delete file="testlog.txt"/>
- </target>
-
- <target name="testForkedOutput">
- <junit fork="yes" haltonerror="true" haltonfailure="true"
- showoutput="${showoutput}">
- <test name="org.example.junit.Output" />
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="testNonForkedOutput">
- <junit fork="false" haltonerror="true" haltonfailure="true"
- showoutput="${showoutput}">
- <test name="org.example.junit.Output" />
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="testForkedThreadedOutput">
- <junit fork="yes" haltonerror="true" haltonfailure="true"
- showoutput="${showoutput}">
- <test name="org.example.junit.ThreadedOutput" />
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="testNonForkedThreadedOutput">
- <junit fork="false" haltonerror="true" haltonfailure="true"
- showoutput="${showoutput}">
- <test name="org.example.junit.ThreadedOutput" />
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="outputTests"
- depends="testForkedOutput,testNonForkedOutput,testForkedThreadedOutput,testNonForkedThreadedOutput" />
-
- <target name="crash">
- <junit fork="true" errorproperty="crashed">
- <test name="org.apache.tools.ant.taskdefs.optional.junit.VmCrash"/>
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="nocrash">
- <junit fork="true" errorproperty="crashed">
- <test name="org.apache.tools.ant.taskdefs.optional.junit.NoVmCrash"/>
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="timeout">
- <junit fork="true" errorproperty="timeout" timeout="1000">
- <test name="org.apache.tools.ant.taskdefs.optional.junit.Sleeper"/>
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="notimeout">
- <junit fork="true" errorproperty="timeout" timeout="15000">
- <test name="org.apache.tools.ant.taskdefs.optional.junit.Sleeper"/>
- <classpath refid="test" />
- </junit>
- </target>
-
- <target name="capture">
- <property name="fork" value="false"/>
- <junit fork="${fork}">
- <test
- name="org.apache.tools.ant.taskdefs.optional.junit.Printer"
- outfile="testlog"/>
- <formatter type="plain"/>
- <classpath refid="test"/>
- </junit>
- </target>
-
- <target name="captureToSummary">
- <property name="fork" value="true"/>
- <junit fork="${fork}" printSummary="withOutAndErr">
- <test name="org.apache.tools.ant.taskdefs.optional.junit.Printer"/>
- <classpath refid="test"/>
- </junit>
- </target>
- </project>
|