File: runtest-cvm.sh

package info (click to toggle)
gluegen2 2.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,992 kB
  • ctags: 6,760
  • sloc: java: 32,368; xml: 2,797; ansic: 2,287; sh: 1,206; makefile: 73
file content (19 lines) | stat: -rwxr-xr-x 526 bytes parent folder | download | duplicates (7)
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