blob: 427f4f37bc64a86abe9e4777b58bfb8b55754e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
builddir=$1
shift
if [ -z "$builddir" ] ; then
echo Usage $0 build-dir
exit 1
fi
echo com.jogamp.gluegen.test.TestPointerBufferEndian
java -Djava.library.path=$builddir/obj -classpath $builddir/classes com.jogamp.gluegen.test.TestPointerBufferEndian
echo
echo com.jogamp.gluegen.test.TestStructAccessorEndian
java -Djava.library.path=$builddir/obj -classpath $builddir/classes com.jogamp.gluegen.test.TestStructAccessorEndian
echo
|