aboutsummaryrefslogtreecommitdiffstats
path: root/test/build.xml
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-07-10 14:11:47 +0200
committerMichael Bien <[email protected]>2010-07-10 14:11:47 +0200
commitcca0e32878a2c196aab969e1dfb75de6bca6b3f7 (patch)
tree7bf98daf9afecfdf4593c1dfd0d37d622afc24a0 /test/build.xml
parentb2558379ed0b2ae7a0ab6bfdb0a8f2c05afa1663 (diff)
another round of cleanup (ALTest).
- dissabled two tests which cause segfaults - TODO all tests which expect an IllegalArgumentException fail for some reason
Diffstat (limited to 'test/build.xml')
-rw-r--r--test/build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/build.xml b/test/build.xml
index 9b037f9..4d5f221 100644
--- a/test/build.xml
+++ b/test/build.xml
@@ -35,15 +35,18 @@
<project name="tests" basedir="." default="all">
+ <property name="junit.path" value="${basedir}/${gluegen.root}/make/lib/junit.jar"/>
+
<target name="init">
<mkdir dir="classes"/>
</target>
- <property name="junit.path" value="${basedir}/${gluegen.root}/make/lib/junit.jar"/>
-
<target name="compile" depends="init">
<javac debug="true" srcdir="./src" destdir="classes" includeantruntime="false"
classpath="${gluegen.root}/build/gluegen-rt.jar;../build/joal.jar;${junit.path}"/>
+ <copy todir="classes">
+ <fileset dir="src" includes="**/*.wav"/>
+ </copy>
</target>
<target name="clean">
@@ -54,6 +57,7 @@
<mkdir dir="${basedir}/results"/>
<junit forkmode="once" showoutput="true" fork="true" includeAntRuntime="true">
<jvmarg value="-Djava.library.path=${basedir}/${gluegen.root}/build/obj:${basedir}/../build/obj"/>
+ <jvmarg value="-Djogamp.debug.NativeLibrary=true"/>
<batchtest todir="${basedir}/results">
<fileset dir="${basedir}/classes">
<include name="com/jogamp/openal/**Test*"/>