1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2021 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="Testing the app launch performance" >
17
18    <option
19        name="test-tag"
20        value="EmulatorLaunchTest" />
21
22    <option name="new-emulator" value="true" />
23
24    <object type="emulator_launcher" class="com.android.performance.tests.EmulatorStartupPerfTest$EmulatorLauncher" />
25
26    <test class="com.android.performance.tests.EmulatorStartupPerfTest">
27        <option name="test-apk-name" value="HelloWorldTests.apk" />
28        <option name="emulator-metrics-key" value="emulator_launch" />
29    </test>
30
31    <object type="delegate_test" class="com.android.tradefed.testtype.AndroidJUnitTest" >
32        <option
33            name="window-animation"
34            value="false" />
35        <option
36            name="rerun"
37            value="false" />
38        <!-- disable timeout to stop having a separate thread per test method -->
39        <option
40            name="test-timeout"
41            value="0" />
42        <option
43            name="runner"
44            value="androidx.test.runner.AndroidJUnitRunner" />
45    </object>
46
47</configuration>
48