summaryrefslogtreecommitdiffstats
path: root/test/TestOneJar_InJar/make-one_jar.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-10-01 22:41:55 +0200
committerSven Gothel <[email protected]>2013-10-01 22:41:55 +0200
commit01c5d59c5245068b0d005ccbb64f8d0aa5165f12 (patch)
tree75b61bd2c6ac9e927eb1ad412bf2fe4819a262b5 /test/TestOneJar_InJar/make-one_jar.sh
parentb05f716cbcbc379588050c8f3d91579b3a14ec88 (diff)
Bug 846: Add manual test case for One-Jar (using 0.97.1)
Note: One-Jar lacks support of a URL handler for it's jar-in-jar files and hence we would need to extract the jar-in-jar resources w/ our TempJarCache from one one-jar file .. too bad. Looks like it's incomplete.
Diffstat (limited to 'test/TestOneJar_InJar/make-one_jar.sh')
-rw-r--r--test/TestOneJar_InJar/make-one_jar.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/TestOneJar_InJar/make-one_jar.sh b/test/TestOneJar_InJar/make-one_jar.sh
new file mode 100644
index 0000000..7ba3a83
--- /dev/null
+++ b/test/TestOneJar_InJar/make-one_jar.sh
@@ -0,0 +1,18 @@
+THISDIR=`pwd`
+GLUEGEN=$THISDIR/../../../gluegen
+JOGL=$THISDIR/../../../jogl
+
+DEST=jogamp01/lib/
+
+bdir=build-x86_64
+
+cp -av $GLUEGEN/$bdir/gluegen-rt.jar $DEST
+cp -av $GLUEGEN/$bdir/gluegen-rt-natives-linux-amd64.jar $DEST
+cp -av $JOGL/$bdir/jar/jogl-all.jar $DEST
+cp -av $JOGL/$bdir/jar/jogl-all-natives-linux-amd64.jar $DEST
+
+rm -f jogamp01/build/*
+
+cd jogamp01
+ant
+cd ..