diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-08 20:59:27 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-04-08 20:59:27 +0200 |
commit | 42a401a312d9093a6ff21d2c00fc178d624e78b6 (patch) | |
tree | b790348a933ac8d60f685326ba8a5f1f8c31828f | |
parent | e74e5567987ce09dde47de130abde0f1dbf8c826 (diff) | |
download | bin-42a401a312d9093a6ff21d2c00fc178d624e78b6.zip bin-42a401a312d9093a6ff21d2c00fc178d624e78b6.tar.gz |
android-proj.sh: comment uninstall, improve and comment instrument
-rwxr-xr-x | android-proj.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/android-proj.sh b/android-proj.sh index 526725a..bd6e104 100755 --- a/android-proj.sh +++ b/android-proj.sh @@ -35,6 +35,7 @@ run "ant instrument install" #run "adb -s emulator-5554 install -r bin/${PNAME}Test-instrumented.apk" run "adb shell am instrument -e coverage true -w ${PKG}.tests/android.test.InstrumentationTestRunner" +# run "adb shell am instrument -e coverage true -w -e class ${PKG}.${ANAME}Test ${PKG}.tests/android.test.InstrumentationTestRunner" -run "adb shell pm uninstall ${PKG}" -run "adb shell pm uninstall ${PKG}.tests" +#run "adb shell pm uninstall ${PKG}" +#run "adb shell pm uninstall ${PKG}.tests" |