summaryrefslogtreecommitdiffstats
path: root/test/applet/runapplet.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/applet/runapplet.sh')
-rw-r--r--test/applet/runapplet.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/applet/runapplet.sh b/test/applet/runapplet.sh
new file mode 100644
index 0000000..cc14554
--- /dev/null
+++ b/test/applet/runapplet.sh
@@ -0,0 +1,17 @@
+#! /bin/bash
+
+RDIR=`pwd`
+
+rm -rf jar
+rm -f gluegen-test.jar
+
+mkdir jar
+cp ../../build/*jar jar/
+cp ../../build/test/build/gluegen-test.jar .
+
+/opt-linux-x86_64/jdk1.6.0_35/bin/java \
+ -Djogamp.debug.IOUtil -Djogamp.debug.JNILibLoader -Djogamp.debug.TempFileCache -Djogamp.debug.JarUtil -Djogamp.debug.TempJarCache \
+ -Djava.security.policy=$RDIR/java.policy.applet \
+ -Dfile.encoding=UTF-8 \
+ sun.applet.AppletViewer $RDIR/applet01.html
+