diff options
author | Sven Gothel <[email protected]> | 2014-01-24 02:44:26 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-24 02:44:26 +0100 |
commit | 2868816971bb80eb226e6edffc527d909ced755b (patch) | |
tree | 6b98dbfa28fa3e0af4006bde55f99527a255a1b9 /test/TestMultiAndFatJar/run-multi.sh | |
parent | 748ad7e1e0d58d4e1f4bb41cea39af091b5bf5dd (diff) |
Refine test/TestMultiAndFatJar: Demoing test class outside of fat and multi jar
Use 'output' folder
- Copy jogl-test.jar and junit.jar to output, to be used in executing (run-*.sh)
Works here ..
Diffstat (limited to 'test/TestMultiAndFatJar/run-multi.sh')
-rw-r--r-- | test/TestMultiAndFatJar/run-multi.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/test/TestMultiAndFatJar/run-multi.sh b/test/TestMultiAndFatJar/run-multi.sh index 86206a4..0c31cac 100644 --- a/test/TestMultiAndFatJar/run-multi.sh +++ b/test/TestMultiAndFatJar/run-multi.sh @@ -1,9 +1,14 @@ +#! /bin/bash -D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JarUtil -Djogamp.debug.TempJarCache -Djogamp.debug.IOUtil" +#D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JarUtil -Djogamp.debug.TempJarCache -Djogamp.debug.IOUtil" #D_ARGS="-Djogamp.debug.ProcAddressHelper -Djogamp.debug.NativeLibrary -Djogamp.debug.NativeLibrary.Lookup" #D_ARGS="-Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JarUtil -Djogamp.debug.TempJarCache -Djogamp.debug.NativeLibrary -Djogamp.debug.IOUtil" #T_CLASS="com.jogamp.opengl.JoglVersion" -T_CLASS="com.jogamp.newt.opengl.GLWindow" +#T_CLASS="com.jogamp.newt.opengl.GLWindow" +T_CLASS="com.jogamp.opengl.test.junit.jogl.demos.es2.newt.TestGearsES2NEWT -time 2000" -java -cp jogl-multi.jar $D_ARGS $T_CLASS 2>&1 | tee run-multi.log +# +# Just to run some tests: jogl-test.jar and junit.jar +# +java -cp output/jogl-multi.jar:output/jogl-test.jar:output/junit.jar $D_ARGS $T_CLASS 2>&1 | tee run-multi.log |