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