diff options
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/tests-win.bat | 3 | ||||
-rwxr-xr-x[-rw-r--r--] | make/scripts/tests.sh | 11 |
2 files changed, 7 insertions, 7 deletions
diff --git a/make/scripts/tests-win.bat b/make/scripts/tests-win.bat index 7984f39..7e702f1 100755 --- a/make/scripts/tests-win.bat +++ b/make/scripts/tests-win.bat @@ -1,6 +1,7 @@ REM scripts\java-win.bat com.jogamp.openal.JoalVersion %* -scripts\java-win.bat com.jogamp.openal.test.manual.OpenALTest %* +REM scripts\java-win.bat com.jogamp.openal.test.manual.OpenALTest %* REM scripts\java-win.bat com.jogamp.openal.test.manual.Sound3DTest %* +scripts\java-win.bat com.jogamp.openal.test.junit.ALVersionTest %* REM scripts\java-win.bat com.jogamp.openal.test.junit.ALutWAVLoaderTest %* REM scripts\java-win.bat com.jogamp.openal.test.junit.ALExtLoopbackDeviceSOFTTest %* 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 $* |