aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-12-13 03:22:08 +0100
committerSven Gothel <[email protected]>2010-12-13 03:22:08 +0100
commitebfb837b95fc6eb6ec9102004d1d068933957400 (patch)
treec4c221582edf538c5e6390404ae20dfdfb97bbc3 /make/build.xml
parent84a76425dd10933a7ad033920a1e0ce12a2a107b (diff)
tests: test.auto.run (junit.run) and test.manual.run
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml18
1 files changed, 13 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml
index e706f0d0d..69be99472 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -8,18 +8,26 @@
- Main build target.
-->
- <target name="all" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,junit.compile,one.dir,tag.build,developer-zip-archive" />
+ <target name="all" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,test.compile,one.dir,tag.build,developer-zip-archive" />
- <target name="all.but-archives" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,junit.compile,one.dir,tag.build" />
+ <target name="all.but-archives" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,test.compile,one.dir,tag.build" />
- <target name="junit.compile">
- <ant antfile="build-test.xml" target="junit.compile" inheritRefs="true" inheritAll="true"/>
+ <target name="test.compile">
+ <ant antfile="build-test.xml" target="test.compile" inheritRefs="true" inheritAll="true"/>
</target>
- <target name="junit.run" description="Run JUNIT tests in nativewindow, jogl and newt projects">
+ <target name="test.auto.run" description="Run automated tests (junit and others) in nativewindow, jogl and newt projects">
+ <ant antfile="build-test.xml" target="test.auto.run" inheritRefs="true" inheritAll="true"/>
+ </target>
+
+ <target name="junit.run" description="Run automated junit tests in nativewindow, jogl and newt projects">
<ant antfile="build-test.xml" target="junit.run" inheritRefs="true" inheritAll="true"/>
</target>
+ <target name="test.manual.run" description="Run manual operated tests in nativewindow, jogl and newt projects">
+ <ant antfile="build-test.xml" target="test.manual.run" inheritRefs="true" inheritAll="true"/>
+ </target>
+
<target name="javadoc.all.zip" depends="javadoc.init, javadoc.all, javadoc.zip"/>
<target name="javadoc.spec.zip" depends="javadoc.init, javadoc.spec, javadoc.zip"/>