/usr/share/gluegen2/make/scripts/runtest-cvm.sh is in libgluegen2-build-java 2.0-rc3-6.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #! /bin/sh
CVM=$1
shift
builddir=$1
shift
if [ ! -x "$CVM" -o -z "$builddir" ] ; then
echo Usage $0 CVM-Binary build-dir
exit 1
fi
echo com.jogamp.gluegen.test.TestPointerBufferEndian
$CVM -Dsun.boot.library.path=$builddir/obj -Xbootclasspath/a:$builddir/classes-cdc com.jogamp.gluegen.test.TestPointerBufferEndian
echo
echo com.jogamp.gluegen.test.TestStructAccessorEndian
$CVM -Dsun.boot.library.path=$builddir/obj -Xbootclasspath/a:$builddir/classes-cdc com.jogamp.gluegen.test.TestStructAccessorEndian
echo
|