blob: fd598c56897495082fffd91ff4181e7b7b409f13 [file] [log] [blame]
Antonio Kantek415b8f12023-11-03 18:50:08 +00001<?xml version="1.0" encoding="utf-8"?><!--
2 ~ Copyright (C) 2023 The Android Open Source Project
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
17<configuration description="Config for Concurrent Multi-Session IME tests">
18 <object class="com.android.tradefed.testtype.suite.module.DeviceFeatureModuleController"
19 type="module_controller">
20 <option name="required-feature" value="android.software.input_methods" />
21
22 <!-- Currently enabled to automotive only -->
23 <option name="required-feature" value="android.hardware.type.automotive" />
24 </object>
25 <option name="test-suite-tag" value="apct" />
26
27 <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
28 <option name="run-command" value="setprop debug.wm.disable_deprecated_abi_dialog 1" />
29 <option name="run-command" value="settings put secure show_ime_with_hard_keyboard 1" />
30 <option name="teardown-command"
31 value="settings delete secure show_ime_with_hard_keyboard" />
32 </target_preparer>
33
34 <target_preparer class="com.android.tradefed.targetprep.suite.SuiteApkInstaller">
35 <option name="cleanup-apks" value="true" />
36 <option name="force-install-mode" value="FULL" />
37 <option name="test-file-name" value="ConcurrentMultiSessionImeTest.apk" />
38 </target_preparer>
39
40 <test class="com.android.tradefed.testtype.AndroidJUnitTest">
41 <option name="package" value="com.android.server.inputmethod.multisessiontest" />
42 </test>
43</configuration>