aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-test.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-04-22 05:20:45 +0200
committerSven Gothel <[email protected]>2011-04-22 05:20:45 +0200
commit0ad2f3f0b54ef0088cfbfef30c35144491effe30 (patch)
tree26c278f7ceadfc7673a5fc8ff3a6f2b7aca695e6 /make/build-test.xml
parent9b8021b1b3d740a978e13824c3030f52d6506089 (diff)
copy all fonts and shader to build folder, allowing ide debugging
Diffstat (limited to 'make/build-test.xml')
-rw-r--r--make/build-test.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/make/build-test.xml b/make/build-test.xml
index b6c728870..18b131594 100644
--- a/make/build-test.xml
+++ b/make/build-test.xml
@@ -33,6 +33,8 @@
<condition property="jvmarg.headless" value="-Djava.awt.headless=true"><not><isset property="isOSX"/></not></condition>
<property name="batchtest.timeout" value="1800000"/> <!-- 30 min -->
+
+ <property name="java.part.test.shadercode" value="com/jogamp/opengl/test/junit/jogl/demos/es2/shader/*"/>
</target>
<!-- ================================================================== -->
@@ -97,7 +99,11 @@
<fileset dir="${src.test}">
<exclude name="**/*.java"/>
</fileset>
+ <fileset dir="${src.test}" includes="${java.part.test.shadercode}"/>
</jar>
+ <copy todir="${classes}">
+ <fileset dir="${src.test}" includes="${java.part.test.shadercode}"/>
+ </copy>
</target>
<target name="test.manual.run" depends="test.compile">