diff options
author | Sven Gothel <[email protected]> | 2011-12-18 23:11:17 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-12-18 23:11:17 +0100 |
commit | 013600318f24391cd6c8c541343c208736b5f4f4 (patch) | |
tree | 763fa750e1a35ca3f1608d3f0e14bdded71aad51 /make/scripts/runtest.sh | |
parent | aa4cc872d630d7de170bdc4202d072220c053325 (diff) |
junit.run: Add 32bit tests for OSX (fat binaries)v2.0-rc5
Diffstat (limited to 'make/scripts/runtest.sh')
-rwxr-xr-x | make/scripts/runtest.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh index 286921a..7968dc0 100755 --- a/make/scripts/runtest.sh +++ b/make/scripts/runtest.sh @@ -31,7 +31,7 @@ rm -f $LOG #D_ARGS="-Djogamp.debug.TraceLock" #D_ARGS="-Djogamp.debug.JarUtil" #D_ARGS="-Djogamp.debug.TempFileCache" -#D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JARUtil" +#D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JarUtil" #D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.gluegen.UseTempJarCache=false" #D_ARGS="-Djogamp.debug.JNILibLoader" #D_ARGS="-Djogamp.debug.Lock" @@ -47,7 +47,8 @@ function onetest() { CLASSPATH=lib/junit.jar:$ANT_JARS:$builddir/../make/lib/TestJarsInJar.jar:$builddir/gluegen-rt.jar:$builddir/gluegen.jar:$builddir/test/build/gluegen-test.jar echo LD_LIBRARY_PATH $LD_LIBRARY_PATH echo CLASSPATH $CLASSPATH - java $D_ARGS -Djava.library.path=$libspath $clazz + echo java -cp $CLASSPATH $D_ARGS -Djava.library.path=$libspath $clazz + java -cp $CLASSPATH $D_ARGS -Djava.library.path=$libspath $clazz echo } @@ -65,9 +66,9 @@ function onetest() { #onetest com.jogamp.common.nio.TestPointerBufferEndian 2>&1 | tee -a $LOG #onetest com.jogamp.common.nio.TestStructAccessorEndian 2>&1 | tee -a $LOG #onetest com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter 2>&1 | tee -a $LOG -onetest com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter 2>&1 | tee -a $LOG +#onetest com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestPlatform01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestRunnableTask01 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestIOUtil01 2>&1 | tee -a $LOG -#onetest com.jogamp.common.util.TestTempJarCache 2>&1 | tee -a $LOG +onetest com.jogamp.common.util.TestTempJarCache 2>&1 | tee -a $LOG #onetest com.jogamp.common.util.TestJarUtil 2>&1 | tee -a $LOG |