diff options
author | Sven Gothel <[email protected]> | 2010-12-13 03:22:08 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 03:22:08 +0100 |
commit | ebfb837b95fc6eb6ec9102004d1d068933957400 (patch) | |
tree | c4c221582edf538c5e6390404ae20dfdfb97bbc3 /make/build.xml | |
parent | 84a76425dd10933a7ad033920a1e0ce12a2a107b (diff) |
tests: test.auto.run (junit.run) and test.manual.run
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 18 |
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"/> |