diff options
author | Sven Gothel <[email protected]> | 2013-01-31 23:21:05 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-31 23:21:05 +0100 |
commit | b827223da34ae4d2970a7b27f9bc0efa96bcac5a (patch) | |
tree | 416a33b3ab14b8a556191fed374a768a2a247e48 /make/scripts | |
parent | 034a6d264385e89e289713cb7f43a7020d6d3c46 (diff) |
Android Build & Test ; WavLoader/Data javax.audio separation (part-1)
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/adb-install-all-armv6.sh | 4 | ||||
-rwxr-xr-x | make/scripts/adb-logcat.sh | 4 | ||||
-rwxr-xr-x | make/scripts/adb-reinstall-all-armv6.sh | 5 | ||||
-rwxr-xr-x | make/scripts/adb-uninstall-all.sh | 4 | ||||
-rw-r--r-- | make/scripts/tests.sh | 4 |
5 files changed, 19 insertions, 2 deletions
diff --git a/make/scripts/adb-install-all-armv6.sh b/make/scripts/adb-install-all-armv6.sh new file mode 100755 index 0000000..794cb73 --- /dev/null +++ b/make/scripts/adb-install-all-armv6.sh @@ -0,0 +1,4 @@ +#adb $* install ../../gluegen/build-android-armv6/jogamp-android-launcher.apk +#adb $* install ../../gluegen/build-android-armv6/gluegen-rt-android-armeabi.apk +adb $* install ../build-android-armv6/joal-android-armeabi.apk +adb $* install ../build-android-armv6/joal-test-android.apk diff --git a/make/scripts/adb-logcat.sh b/make/scripts/adb-logcat.sh new file mode 100755 index 0000000..ea4be3d --- /dev/null +++ b/make/scripts/adb-logcat.sh @@ -0,0 +1,4 @@ +sdir=`dirname $0` + +adb $* logcat -c +adb $* logcat diff --git a/make/scripts/adb-reinstall-all-armv6.sh b/make/scripts/adb-reinstall-all-armv6.sh new file mode 100755 index 0000000..0e62c59 --- /dev/null +++ b/make/scripts/adb-reinstall-all-armv6.sh @@ -0,0 +1,5 @@ +sdir=`dirname $0` + +$sdir/adb-uninstall-all.sh $* +$sdir/adb-install-all-armv6.sh $* + diff --git a/make/scripts/adb-uninstall-all.sh b/make/scripts/adb-uninstall-all.sh new file mode 100755 index 0000000..7d7d7a3 --- /dev/null +++ b/make/scripts/adb-uninstall-all.sh @@ -0,0 +1,4 @@ +#adb $* uninstall jogamp.android.launcher +#adb $* uninstall com.jogamp.common +adb $* uninstall com.jogamp.openal +adb $* uninstall com.jogamp.openal.test diff --git a/make/scripts/tests.sh b/make/scripts/tests.sh index db2bc59..657609f 100644 --- a/make/scripts/tests.sh +++ b/make/scripts/tests.sh @@ -85,6 +85,6 @@ function testnormal() { } -#testnormal com.jogamp.openal.test.manual.OpenALTest $* -testnormal com.jogamp.openal.test.manual.Sound3DTest $* +testnormal com.jogamp.openal.test.manual.OpenALTest $* +#testnormal com.jogamp.openal.test.manual.Sound3DTest $* #testnormal com.jogamp.openal.test.junit.ALExtLoopbackDeviceSOFTTest $* |