diff options
Diffstat (limited to 'make/scripts/tests.sh')
-rwxr-xr-x[-rw-r--r--] | make/scripts/tests.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index efad1ef..47c08cd 100644..100755 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -1,17 +1,15 @@ function print_usage() { - echo "Usage: $0 java-exe java-xargs joal-build-dir" + echo "Usage: $0 java-exe joal-build-dir" echo "e.g.: bash scripts/tests.sh `which java` -d64 ../build-x86_64" } -if [ -z "$1" -o -z "$2" -o -z "$3" ] ; then +if [ -z "$1" -o -z "$2" ] ; then print_usage exit 0 fi javaexe="$1" shift -javaxargs=$1 -shift bdir=$1 shift bdir_base=`basename $bdir` @@ -88,8 +86,9 @@ function testnormal() { } -#testnotmal com.jogamp.openal.JoalVersion $* -testnormal com.jogamp.openal.test.manual.OpenALTest $* +#testnormal com.jogamp.openal.JoalVersion $* +#testnormal com.jogamp.openal.test.manual.OpenALTest $* #testnormal com.jogamp.openal.test.manual.Sound3DTest $* +testnormal com.jogamp.openal.test.junit.ALVersionTest $* #testnormal com.jogamp.openal.test.junit.ALutWAVLoaderTest $* #testnormal com.jogamp.openal.test.junit.ALExtLoopbackDeviceSOFTTest $* |