1#!/bin/bash
2if [ -z "$ANDROID_BUILD_TOP" ]; then
3    echo "Android build environment not set"
4    exit -1
5fi
6
7echo "waiting for device"
8adb root && adb wait-for-device remount && adb sync
9
10adb shell /data/nativetest/EcoDataTest/EcoDataTest
11adb shell /data/nativetest/EcoSessionTest/EcoSessionTest
12#ECOService test lives in vendor side.
13adb shell data/nativetest/vendor/EcoServiceTest/EcoServiceTest
14