diff options
author | Sven Gothel <[email protected]> | 2023-05-04 17:25:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-05-04 17:25:25 +0200 |
commit | b83ed843310f74655493ceefb2ee0e5420d1fe28 (patch) | |
tree | f1479ff6e5c5105e23a263d6ce615bb47ed25e50 /make | |
parent | e481757000902582e80353f9b76f77793950d47a (diff) |
Add ALVersion, i.e. retrieve vendor, renderer, version and vendor-version. Test against OpenAL-Soft data >= 1.23.0
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 $* |