1 #!/bin/bash 2 3 if [ -z "$ANDROID_BUILD_TOP" ]; then 4 echo "Android build environment not set" 5 exit -1 6 fi 7 8 echo "waiting for device" 9 adb root && adb wait-for-device remount 10 11 adb shell /system/bin/resampler_tests 12