aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-09 04:13:30 +0200
committerSven Gothel <[email protected]>2010-04-09 04:13:30 +0200
commit9ae88158f66b48b257e417c3973ce010c1fc45a8 (patch)
tree84b38918ca765bdacc9be7389f2e948cdfa30b04 /make/build.xml
parent049236c5f8ff1500532c7bf64e7d78db031b3ed5 (diff)
Attach build-junit.xml to build.xml ; Add more tests Offscreen(broken on ATI), Drawable
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml15
1 files changed, 9 insertions, 6 deletions
diff --git a/make/build.xml b/make/build.xml
index 206d46d34..e39e6dea2 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -37,10 +37,6 @@
<ant antfile="${jogl.build.xml}" dir="${jogl.make}" target="all" inheritAll="false"/>
</target>
- <target name="junit.run.jogl" depends="init">
- <ant antfile="${jogl.build.xml}" dir="${jogl.make}" target="junit.run" inheritAll="false"/>
- </target>
-
<target name="build.newt" depends="init">
<ant antfile="${newt.build.xml}" dir="${newt.make}" target="all" inheritAll="false"/>
</target>
@@ -129,9 +125,16 @@
- Main build target.
-->
- <target name="all" description="Build nativewindow, jogl and newt projects" depends="init,build.nativewindow,build.jogl,build.newt,one-lib-dir,developer-zip-archive,source-archive" />
+ <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-lib-dir,developer-zip-archive,source-archive" />
- <target name="junit.run" description="Run JUNIT tests in nativewindow, jogl and newt projects" depends="init,junit.run.jogl" />
+ <target name="junit.compile">
+ <ant antfile="build-junit.xml" target="junit.compile"/>
+ </target>
+
+ <target name="test" depends="junit.run"/>
+ <target name="junit.run" description="Run JUNIT tests in nativewindow, jogl and newt projects">
+ <ant antfile="build-junit.xml" target="junit.run"/>
+ </target>
<target name="clean" depends="init">
<ant antfile="${nativewindow.build.xml}" dir="${nativewindow.make}" target="clean" inheritAll="false"/>