diff options
| author | 2022-02-24 17:23:37 -0800 | |
|---|---|---|
| committer | 2022-03-21 15:09:15 -0700 | |
| commit | fd0314d65a739b8aa0b49ad83f40aa28a730df37 (patch) | |
| tree | 82470d07db08c0729b3c5a4f792a49326e2e725d | |
| parent | 9e478558190b4527773c431086a04417abd16cf6 (diff) | |
Drop "adb shell" from RunCommandTargetPreparer.
The command should not have "adb shell", as the command is passed to
the device shell by RunCommandTargetPreparer.
Bug: 220385622
Test: atest InputMethodStressTest
Change-Id: I95a90d73e2c26c0ad21d5000b19ff8d805de5250
| -rw-r--r-- | tests/InputMethodStressTest/AndroidTest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/InputMethodStressTest/AndroidTest.xml b/tests/InputMethodStressTest/AndroidTest.xml index fc54ca645a2e..5fb260f174e6 100644 --- a/tests/InputMethodStressTest/AndroidTest.xml +++ b/tests/InputMethodStressTest/AndroidTest.xml @@ -19,8 +19,8 @@ <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer" /> <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer"> - <option name="run-command" value="adb shell settings put secure show_ime_with_hard_keyboard 1" /> - <option name="teardown-command" value="adb shell settings delete secure show_ime_with_hard_keyboard" /> + <option name="run-command" value="settings put secure show_ime_with_hard_keyboard 1" /> + <option name="teardown-command" value="settings delete secure show_ime_with_hard_keyboard" /> </target_preparer> <target_preparer class="com.android.tradefed.targetprep.suite.SuiteApkInstaller"> |