From edbff99164a350a0147a5c8617cef9a86f7a2749 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 5 May 2010 17:28:52 +0200 Subject: Cleanup: Move scripts into their folder --- make/scripts/runtest.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 make/scripts/runtest.sh (limited to 'make/scripts/runtest.sh') diff --git a/make/scripts/runtest.sh b/make/scripts/runtest.sh new file mode 100644 index 0000000..427f4f3 --- /dev/null +++ b/make/scripts/runtest.sh @@ -0,0 +1,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 -- cgit v1.2.3