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