blob: 9b1fe4be666b858a0174a6d30a72112aea23ef2c [file] [log] [blame]
satokc91437d2011-03-03 13:54:38 -08001#!/bin/bash
2
3while [[ $# -gt 0 ]]; do
4 case "$1" in
5 --rebuild ) echo Rebuild && rebuild=true;;
6 * ) com_opts+=($1);;
7 esac
8 shift
9done
10
11if [[ -z $ANDROID_PRODUCT_OUT && $rebuilld == true ]]; then
12 echo You must lunch before running this test.
13 exit 0
14fi
15
16if [[ $rebuild == true ]]; then
17 make -j4 FrameworksCoreSystemPropertiesTests
Andreas Gampe2e6b9cb2017-07-29 14:14:39 -070018 TESTAPP=${ANDROID_PRODUCT_OUT}/data/app/FrameworksCoreSystemPropertiesTests/FrameworksCoreSystemPropertiesTests.apk
satokdecee8d2011-03-07 11:32:51 -080019 COMMAND="adb install -r $TESTAPP"
20 echo $COMMAND
21 $COMMAND
satokc91437d2011-03-03 13:54:38 -080022fi
23
24adb shell am instrument -w -e class android.os.SystemPropertiesTest com.android.frameworks.coretests.systemproperties/android.test.InstrumentationTestRunner