blob: f7b1f16e70ef2c7e40fdfe6428a920bb29a13cde [file] [log] [blame]
Steven Morelande58566b2020-05-16 02:08:05 +00001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2020 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<configuration description="Runs FMQ on-device integration tests.">
17 <option name="test-suite-tag" value="apct" />
18 <option name="test-suite-tag" value="apct-native" />
19
20 <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer"/>
21
22 <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
23 <!-- We would like to abort, but currently there is not a simple way to specify installation of both bitnesses of targets. -->
24 <option name="abort-on-push-failure" value="false"/>
25
26 <option name="push" value="fmq_test_client32->/data/nativetest/fmq_test_client/fmq_test_client" />
27 <option name="push" value="fmq_test_client64->/data/nativetest64/fmq_test_client/fmq_test_client" />
28
29 <option name="push" value="android.hardware.tests.msgq@1.0-service-test32->/data/nativetest/android.hardware.tests.msgq@1.0-service-test/android.hardware.tests.msgq@1.0-service-test" />
30 <option name="push" value="android.hardware.tests.msgq@1.0-service-test64->/data/nativetest64/android.hardware.tests.msgq@1.0-service-test/android.hardware.tests.msgq@1.0-service-test" />
31
32 <option name="cleanup" value="true" />
33 </target_preparer>
34
35 <test class="com.android.tradefed.testtype.python.PythonBinaryHostTest" >
36 <option name="par-file-name" value="fmq_test" />
37 <option name="test-timeout" value="2m" />
38 </test>
39</configuration>
40