The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2009 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 |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 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 | |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 17 | <!-- |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 18 | This file contains standard test definitions for the Android platform |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 19 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 20 | The following test types are supported: |
| 21 | - On device Java instrumentation tests are defined by <test> tags. |
| 22 | - native ones (C/C++) are defined by <test-native> tags. |
| 23 | - host java tests are defined by <test-host> tags. |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 24 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 25 | See test_defs.xsd for more information. |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 26 | --> |
| 27 | |
Phil Dubach | 7c343ce | 2009-05-21 16:35:22 -0700 | [diff] [blame] | 28 | <test-definitions xmlns="http://schemas.android.com/testrunner/test_defs/1.0" |
| 29 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 30 | xsi:schemaLocation="http://schemas.android.com/testrunner/test_defs/1.0 test_defs.xsd"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 31 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 32 | <!-- frameworks tests --> |
| 33 | <test name="frameworks-core" |
| 34 | build_path="frameworks/base/core/tests/coretests" |
| 35 | package="com.android.frameworks.coretests" |
| 36 | coverage_target="framework" |
| 37 | continuous="true" /> |
| 38 | |
Xia Wang | 991ffd7 | 2010-06-29 14:59:26 -0700 | [diff] [blame] | 39 | <!-- will not run in the continuous test as it needs both Wifi & 3G --> |
| 40 | <test name="frameworks-connectivity" |
| 41 | build_path="frameworks/base/core/tests/ConnectivityManagerTest/" |
| 42 | package="com.android.connectivitymanagertest" |
| 43 | runner=".ConnectivityManagerUnitTestRunner" |
| 44 | coverage_target="framework" /> |
| 45 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 46 | <test name="frameworks-graphics" |
| 47 | build_path="frameworks/base/graphics/tests/graphicstests" |
| 48 | package="com.android.frameworks.graphicstests" |
| 49 | coverage_target="framework" |
| 50 | continuous="true" /> |
| 51 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 52 | <test name="frameworks-location" |
| 53 | build_path="frameworks/base/location/tests/locationtests" |
| 54 | package="com.android.frameworks.locationtests" |
| 55 | coverage_target="framework" |
| 56 | continuous="true" /> |
| 57 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 58 | <test name="frameworks-sax" |
| 59 | build_path="frameworks/base/sax/tests/saxtests" |
| 60 | package="com.android.frameworks.saxtests" |
| 61 | coverage_target="framework" |
| 62 | continuous="true" /> |
| 63 | |
Neal Nguyen | d538def | 2010-02-02 17:12:22 -0800 | [diff] [blame] | 64 | <test name="frameworks-services" |
| 65 | build_path="frameworks/base/services/tests/servicestests" |
| 66 | package="com.android.frameworks.servicestests" |
Christopher Wiley | 00d6fa7 | 2016-05-18 12:26:02 -0700 | [diff] [blame] | 67 | runner="android.support.test.runner.AndroidJUnitRunner" |
Neal Nguyen | d538def | 2010-02-02 17:12:22 -0800 | [diff] [blame] | 68 | coverage_target="framework" |
| 69 | continuous="true" /> |
| 70 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 71 | <test name="frameworks-telephony" |
Jake Hamby | e8d4078 | 2012-07-19 12:31:30 -0700 | [diff] [blame] | 72 | build_path="frameworks/opt/telephony/tests/telephonytests" |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 73 | package="com.android.frameworks.telephonytests" |
Naveen Kalla | 2ab9390 | 2016-07-18 13:38:08 -0700 | [diff] [blame] | 74 | runner="android.support.test.runner.AndroidJUnitRunner" |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 75 | coverage_target="framework" |
| 76 | continuous="true" /> |
| 77 | |
Lorenzo Colitti | e02265e | 2016-02-19 14:28:49 +0900 | [diff] [blame] | 78 | <test name="frameworks-util" |
| 79 | build_path="frameworks/base/core/tests/utiltests" |
| 80 | package="com.android.frameworks.utiltests" |
| 81 | runner="android.support.test.runner.AndroidJUnitRunner" |
| 82 | continuous="true" /> |
| 83 | |
Mitchell Wills | 93178d7 | 2015-12-02 17:53:55 -0800 | [diff] [blame] | 84 | <test name="frameworks-wifi" |
| 85 | build_path="frameworks/opt/net/wifi/tests/wifitests" |
| 86 | package="com.android.server.wifi.test" |
| 87 | runner="android.support.test.runner.AndroidJUnitRunner" |
| 88 | coverage_target="framework" |
| 89 | continuous="true" /> |
| 90 | |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 91 | <test name="frameworks-testrunner" |
Brett Chabot | 786f4db | 2010-02-20 20:07:38 -0800 | [diff] [blame] | 92 | build_path="frameworks/base/test-runner" |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 93 | package="com.android.frameworks.testrunner.tests" |
Brett Chabot | 786f4db | 2010-02-20 20:07:38 -0800 | [diff] [blame] | 94 | coverage_target="android.test.runner" |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 95 | continuous="true" /> |
| 96 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 97 | <test name="frameworks-vpn" |
| 98 | build_path="frameworks/base/vpn/tests/vpntests" |
| 99 | package="com.android.frameworks.vpntests" |
| 100 | coverage_target="framework" |
| 101 | continuous="true" /> |
| 102 | |
Jeff Sharkey | 39ffbcc | 2013-05-30 14:27:32 -0700 | [diff] [blame] | 103 | <test name="frameworks-support" |
| 104 | build_path="frameworks/support/tests" |
| 105 | package="android.support.tests" |
Jeff Sharkey | 01ae453 | 2013-03-07 21:21:13 -0800 | [diff] [blame] | 106 | continuous="true" /> |
| 107 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 108 | <test name="core" |
| 109 | build_path="frameworks/base/tests/CoreTests" |
| 110 | package="android.core" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 111 | coverage_target="framework" |
| 112 | continuous="true" /> |
| 113 | |
Chung-yih Wang | 84dcb45 | 2009-09-29 11:27:11 +0800 | [diff] [blame] | 114 | <test name="keystore-unit" |
| 115 | build_path="frameworks/base/keystore/tests" |
| 116 | package="android.security.tests" |
Chung-yih Wang | 84dcb45 | 2009-09-29 11:27:11 +0800 | [diff] [blame] | 117 | coverage_target="framework" |
| 118 | continuous="true" /> |
| 119 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 120 | <test name="imf" |
| 121 | build_path="frameworks/base/tests/ImfTest" |
| 122 | package="com.android.imftest.tests" |
| 123 | coverage_target="framework" |
| 124 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 125 | |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 126 | <test name="framework-permission" |
| 127 | build_path="frameworks/base/tests/permission" |
| 128 | package="com.android.framework.permission.tests" |
| 129 | runner="android.test.InstrumentationTestRunner" |
| 130 | coverage_target="framework" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 131 | continuous="true" /> |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 132 | |
Brett Chabot | 8c63b97 | 2010-04-05 12:19:17 -0700 | [diff] [blame] | 133 | <test name="android-common" |
Dan Egnor | e970b3d | 2009-11-18 12:05:35 -0800 | [diff] [blame] | 134 | build_path="frameworks/base/common/tests" |
Brett Chabot | f692a04 | 2010-04-02 08:50:02 -0700 | [diff] [blame] | 135 | package="com.android.common.tests" |
| 136 | coverage_target="framework" |
| 137 | continuous="true" /> |
Dan Egnor | e970b3d | 2009-11-18 12:05:35 -0800 | [diff] [blame] | 138 | |
Hugo Hudson | 35cf07a | 2011-07-26 00:17:05 +0100 | [diff] [blame] | 139 | <test name="ex-variablespeed" |
| 140 | build_path="frameworks/ex/variablespeed/tests" |
| 141 | package="com.android.ex.variablespeed.tests" |
| 142 | coverage_target="framework" |
| 143 | continuous="true" |
| 144 | description="Framework variable speed audio tests" /> |
| 145 | |
Jeff Brown | 6ec6d98 | 2012-04-06 14:50:23 -0700 | [diff] [blame] | 146 | <test-native name="libandroidfw" |
| 147 | build_path="frameworks/base/libs/androidfw/tests" |
| 148 | description="Framework libandroidfw unit tests." /> |
Jeff Brown | ec5b11b | 2010-06-13 20:09:33 -0700 | [diff] [blame] | 149 | |
Jeff Brown | 55ecde5 | 2011-01-02 21:34:53 -0800 | [diff] [blame] | 150 | <test-native name="libinput" |
Jeff Brown | 1190c0f | 2013-07-01 19:27:30 -0700 | [diff] [blame] | 151 | build_path="frameworks/native/libs/input/tests" |
Jeff Brown | 55ecde5 | 2011-01-02 21:34:53 -0800 | [diff] [blame] | 152 | description="Framework libinput unit tests." /> |
| 153 | |
Jeff Brown | 1190c0f | 2013-07-01 19:27:30 -0700 | [diff] [blame] | 154 | <test-native name="libinputservice" |
| 155 | build_path="frameworks/base/services/input/tests" |
| 156 | description="Framework libinputservice unit tests." /> |
| 157 | |
Jeff Sharkey | 2753baa | 2012-02-14 17:30:01 -0800 | [diff] [blame] | 158 | <test name="volley" |
| 159 | build_path="frameworks/support/volley/tests" |
| 160 | package="com.android.volley.tests" |
| 161 | continuous="true" /> |
| 162 | |
Chad Brubaker | ec4080c | 2016-08-22 12:05:15 -0700 | [diff] [blame] | 163 | <test name="networksecurityconfig" |
| 164 | build_path="frameworks/base/tests/NetworkSecurityConfigTest" |
| 165 | package="android.security.net.config" |
| 166 | coverage_target="framework" |
| 167 | description="Android network security config tests." /> |
| 168 | |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 169 | <!-- end of framework tests --> |
| 170 | |
| 171 | <!-- media framework tests --> |
| 172 | <test name="media" |
| 173 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 174 | package="com.android.mediaframeworktest" |
| 175 | runner=".MediaFrameworkTestRunner" |
| 176 | coverage_target="framework" |
| 177 | continuous="true" /> |
| 178 | |
| 179 | <test name="mediaapitest" |
| 180 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 181 | package="com.android.mediaframeworktest" |
| 182 | class="com.android.mediaframeworktest.functional.MediaPlayerApiTest" |
| 183 | runner=".MediaFrameworkTestRunner" |
| 184 | coverage_target="framework" /> |
| 185 | |
| 186 | <test name="mediarecordertest" |
| 187 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 188 | package="com.android.mediaframeworktest" |
| 189 | class="com.android.mediaframeworktest.functional.MediaRecorderTest" |
| 190 | runner=".MediaFrameworkTestRunner" |
| 191 | coverage_target="framework" /> |
| 192 | |
| 193 | <test name="mediastresstest" |
| 194 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 195 | package="com.android.mediaframeworktest" |
| 196 | runner=".MediaRecorderStressTestRunner" |
| 197 | coverage_target="framework" /> |
| 198 | |
| 199 | <test name="mediamemorystress" |
| 200 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 201 | package="com.android.mediaframeworktest" |
| 202 | runner=".MediaFrameworkPerfTestRunner" |
| 203 | coverage_target="framework" /> |
| 204 | |
| 205 | <test name="mediaunit" |
| 206 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 207 | package="com.android.mediaframeworktest" |
| 208 | runner=".MediaFrameworkUnitTestRunner" |
| 209 | coverage_target="framework" /> |
| 210 | |
Igor Murashkin | 9fa45c0 | 2013-06-03 11:33:03 -0700 | [diff] [blame] | 211 | <test name="mediaintegrationtest" |
| 212 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 213 | package="com.android.mediaframeworktest" |
| 214 | runner=".MediaFrameworkIntegrationTestRunner" |
| 215 | coverage_target="framework" /> |
| 216 | |
Yu Shan Emily Lau | b152b93 | 2013-04-12 17:27:15 -0700 | [diff] [blame] | 217 | <test-native name="camera-client-native" |
| 218 | build_path="frameworks/av/camera/tests/" |
| 219 | description="Camera client native tests." /> |
| 220 | |
| 221 | <test-native name="camera-hal2-native" |
| 222 | build_path="hardware/libhardware/tests/camera2" |
| 223 | description="Camera hal2 native tests." /> |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 224 | <!-- end of media framework tests --> |
| 225 | |
| 226 | <!-- targeted framework tests --> |
| 227 | <test name="account" |
| 228 | build_path="frameworks/base/core/tests/coretests" |
| 229 | package="com.android.frameworks.coretests" |
| 230 | class="android.accounts.AccountManagerServiceTest" |
| 231 | coverage_target="framework" /> |
| 232 | |
| 233 | <test name="smoke" |
| 234 | build_path="frameworks/base/tests/SmokeTest" |
| 235 | package="com.android.smoketest.tests" |
| 236 | coverage_target="framework" |
| 237 | continuous="true" /> |
| 238 | |
| 239 | <test name="launchperf" |
| 240 | build_path="development/apps/launchperf" |
| 241 | package="com.android.launchperf" |
| 242 | runner=".SimpleActivityLaunchPerformance" |
| 243 | coverage_target="framework" /> |
| 244 | |
| 245 | <test name="contentprovideroperation" |
| 246 | build_path="frameworks/base/core/tests/coretests" |
| 247 | package="com.android.frameworks.coretests" |
| 248 | class="android.content.ContentProviderOperationTest" |
| 249 | coverage_target="framework" /> |
| 250 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 251 | <!-- selected app tests --> |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 252 | <test name="apidemos" |
| 253 | build_path="development/samples/ApiDemos" |
| 254 | package="com.example.android.apis.tests" /> |
| 255 | |
Guang Zhu | cf02f24 | 2010-06-21 16:55:00 -0700 | [diff] [blame] | 256 | <test name="calculator" |
| 257 | build_path="packages/apps/Calculator" |
| 258 | package="com.android.calculator2.tests" |
Guang Zhu | b7d67e6 | 2010-12-06 14:09:11 -0800 | [diff] [blame] | 259 | coverage_target="Calculator" |
| 260 | continuous="true" /> |
Guang Zhu | cf02f24 | 2010-06-21 16:55:00 -0700 | [diff] [blame] | 261 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 262 | <test name="calendar" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 263 | build_path="packages/apps/Calendar" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 264 | package="com.android.calendar.tests" |
| 265 | coverage_target="Calendar" |
| 266 | continuous="true" /> |
| 267 | |
| 268 | <test name="calprov" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 269 | build_path="packages/providers/CalendarProvider" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 270 | package="com.android.providers.calendar.tests" |
Swarna Kumar | 8aca5b8 | 2009-07-30 15:03:25 -0700 | [diff] [blame] | 271 | coverage_target="CalendarProvider" |
| 272 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 273 | |
Yu Shan Emily Lau | 9ba4eff | 2012-02-23 15:39:52 -0800 | [diff] [blame] | 274 | <test name="camera-functional" |
Jason Noguchi | b707698 | 2012-02-16 18:41:56 -0800 | [diff] [blame] | 275 | build_path="packages/apps/Camera" |
Yu Shan Emily Lau | 9ba4eff | 2012-02-23 15:39:52 -0800 | [diff] [blame] | 276 | package="com.google.android.camera.tests" |
| 277 | runner="com.android.camera.CameraTestRunner" |
Jason Noguchi | b707698 | 2012-02-16 18:41:56 -0800 | [diff] [blame] | 278 | coverage_target="Camera" |
Yu Shan Emily Lau | 9ba4eff | 2012-02-23 15:39:52 -0800 | [diff] [blame] | 279 | description="Camera functional test" |
Jason Noguchi | b707698 | 2012-02-16 18:41:56 -0800 | [diff] [blame] | 280 | continuous="true" /> |
| 281 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 282 | <test name="contactsprov" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 283 | build_path="packages/providers/ContactsProvider" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 284 | package="com.android.providers.contacts.tests" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 285 | coverage_target="ContactsProvider" |
| 286 | continuous="true" /> |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 287 | |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 288 | <test name="contacts" |
| 289 | build_path="packages/apps/Contacts" |
| 290 | package="com.android.contacts.tests" |
| 291 | runner="android.test.InstrumentationTestRunner" |
| 292 | coverage_target="Contacts" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 293 | description="Tests for the Contacts app." |
| 294 | continuous="true" /> |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 295 | |
Brett Chabot | cf87c98 | 2009-11-12 11:47:16 -0800 | [diff] [blame] | 296 | <test name="contacts-launch" |
| 297 | build_path="packages/apps/Contacts" |
| 298 | package="com.android.contacts.tests" |
| 299 | runner="com.android.contacts.ContactsLaunchPerformance" |
| 300 | description="Launch performance for Contacts." /> |
| 301 | |
Santos Cordon | ddd7ea4 | 2013-03-19 12:08:05 -0700 | [diff] [blame] | 302 | <test name="dialer" |
| 303 | build_path="packages/apps/Dialer" |
| 304 | package="com.android.dialer.tests" |
| 305 | runner="android.test.InstrumentationTestRunner" |
| 306 | coverage_target="Dialer" |
| 307 | description="Tests for the Dialer app." |
| 308 | continuous="true" /> |
| 309 | |
Victor Chang | 126f40c | 2016-08-18 19:55:19 +0100 | [diff] [blame] | 310 | <test name="managed-provisioning" |
| 311 | build_path="packages/apps/ManagedProvisioning/tests" |
| 312 | package="com.android.managedprovisioning.tests" |
| 313 | runner="com.android.managedprovisioning.TestInstrumentationRunner" |
| 314 | coverage_target="ManagedProvisioning" |
| 315 | description="Tests for the ManagedProvisioning app." |
| 316 | continuous="true" /> |
| 317 | |
Jeff Sharkey | 7476775 | 2011-10-12 13:45:25 -0700 | [diff] [blame] | 318 | <test name="downloadprovider" |
| 319 | build_path="packages/providers/DownloadProvider/tests" |
| 320 | package="com.android.providers.downloads.tests" |
| 321 | coverage_target="DownloadProvider" |
| 322 | continuous="true" /> |
| 323 | |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 324 | <test name="downloadprovider-permission" |
| 325 | build_path="packages/providers/DownloadProvider/tests/permission" |
| 326 | package="com.android.providers.downloads.permission.tests" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 327 | coverage_target="DownloadProvider" |
| 328 | continuous="true" /> |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 329 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 330 | <test name="email" |
| 331 | build_path="packages/apps/Email" |
| 332 | package="com.android.email.tests" |
| 333 | coverage_target="Email" |
| 334 | continuous="true" /> |
| 335 | |
| 336 | <test name="emailsmall" |
| 337 | build_path="packages/apps/Email" |
| 338 | package="com.android.email.tests" |
| 339 | class="com.android.email.SmallTests" |
| 340 | coverage_target="Email" /> |
| 341 | |
Marc Blank | b1bc3d8 | 2011-02-17 12:47:10 -0800 | [diff] [blame] | 342 | <test name="exchange" |
| 343 | build_path="packages/apps/Exchange" |
| 344 | package="com.android.exchange.tests" |
| 345 | coverage_target="Exchange" |
| 346 | continuous="true" /> |
| 347 | |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 348 | <test name="musicplayer" |
| 349 | build_path="packages/apps/Music" |
| 350 | package="com.android.music.tests" |
| 351 | runner=".MusicPlayerFunctionalTestRunner" |
Yu Shan Emily Lau | d17eb0b | 2009-04-09 13:55:00 -0700 | [diff] [blame] | 352 | coverage_target="Music" /> |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 353 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 354 | <test name="mms" |
| 355 | build_path="packages/apps/Mms" |
| 356 | package="com.android.mms.tests" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 357 | coverage_target="Mms" /> |
| 358 | |
Nicolas Catania | 6f0366f | 2009-12-07 13:03:13 -0800 | [diff] [blame] | 359 | <!-- Unit tests for the phone application. --> |
| 360 | <test name="phone-unit" |
Santos Cordon | 70939ca | 2013-12-12 18:39:22 -0800 | [diff] [blame] | 361 | build_path="packages/services/Telephony" |
Nicolas Catania | 6f0366f | 2009-12-07 13:03:13 -0800 | [diff] [blame] | 362 | package="com.android.phone.tests" |
| 363 | continuous="true" |
| 364 | coverage_target="Phone" /> |
| 365 | |
Jonathan Basseri | 9810854 | 2015-07-09 11:32:51 -0700 | [diff] [blame] | 366 | <test name="carrierconfig-unit" |
| 367 | build_path="packages/apps/CarrierConfig" |
| 368 | package="com.android.carrierconfig.tests" |
| 369 | continuous="true" |
| 370 | coverage_target="Phone" |
| 371 | description="Tests for default carrier config app" /> |
| 372 | |
Santos Cordon | 4e0ad8f | 2015-05-21 12:25:05 -0700 | [diff] [blame] | 373 | <test name="telecom-unit" |
Santos Cordon | 70939ca | 2013-12-12 18:39:22 -0800 | [diff] [blame] | 374 | build_path="packages/services/Telecomm" |
Tyler Gunn | 2e4aa79 | 2014-09-12 09:19:08 -0700 | [diff] [blame] | 375 | package="com.android.server.telecom.tests" |
Santos Cordon | 70939ca | 2013-12-12 18:39:22 -0800 | [diff] [blame] | 376 | continuous="true" |
| 377 | coverage_target="Phone" /> |
| 378 | |
Bryan Mawhinney | d75939d | 2010-02-05 17:17:13 +0000 | [diff] [blame] | 379 | <test name="quicksearchbox" |
| 380 | build_path="packages/apps/QuickSearchBox" |
| 381 | package="com.android.quicksearchbox.tests" |
Brett Chabot | 79a612b | 2010-04-05 16:37:59 -0700 | [diff] [blame] | 382 | coverage_target="QuickSearchBox" /> |
Bryan Mawhinney | d75939d | 2010-02-05 17:17:13 +0000 | [diff] [blame] | 383 | |
Brett Chabot | eec5042 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 384 | <test name="systemui" |
Geoffrey Pitsch | 251ae64 | 2016-08-18 11:36:37 -0400 | [diff] [blame] | 385 | build_path="frameworks/base/packages/SystemUI/tests" |
Brett Chabot | eec5042 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 386 | package="com.android.systemui.tests" |
| 387 | coverage_target="SystemUI" |
Geoffrey Pitsch | 251ae64 | 2016-08-18 11:36:37 -0400 | [diff] [blame] | 388 | runner="android.support.test.runner.AndroidJUnitRunner" |
Brett Chabot | eec5042 | 2011-08-17 15:40:03 -0700 | [diff] [blame] | 389 | continuous="true" |
| 390 | description="SystemUI tests" /> |
| 391 | |
Jorim Jaggi | fd16ae9 | 2016-10-11 14:32:25 +0200 | [diff] [blame^] | 392 | <test name="systemui-jank" |
| 393 | build_path="platform_testing/tests/jank/UbSystemUiJankTests" |
| 394 | package="android.platform.systemui.tests.jank" |
| 395 | runner="android.test.InstrumentationTestRunner" |
| 396 | continuous="true" |
| 397 | description="SystemUI jank tests" /> |
| 398 | |
Jeff Sharkey | 34c8fae | 2013-09-06 13:56:45 -0700 | [diff] [blame] | 399 | <test name="documentsui" |
| 400 | build_path="frameworks/base/packages/DocumentsUI/tests" |
| 401 | package="com.android.documentsui.tests" |
| 402 | coverage_target="DocumentsUI" |
| 403 | continuous="true" |
| 404 | description="DocumentsUI tests" /> |
| 405 | |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 406 | <!-- native tests --> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 407 | |
| 408 | <!-- Bionic C++ --> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 409 | <test-native name="libstdcpp" |
| 410 | build_path="system/extras/tests/bionic/libstdc++" |
Niko Catania | 55ebbc4 | 2009-04-03 14:13:05 -0700 | [diff] [blame] | 411 | description="Bionic libstdc++." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 412 | extra_build_args="BIONIC_TESTS=1" /> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 413 | |
Wei-Ta Chen | b515fb1 | 2009-05-28 13:42:14 -0700 | [diff] [blame] | 414 | <test-native name="libskia" |
| 415 | build_path="external/skia/tests" |
| 416 | description="Skia tests." /> |
| 417 | |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 418 | <!-- Google Test --> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 419 | <test-native name="gtest" |
| 420 | build_path="external/gtest" |
| 421 | description="Google test." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 422 | extra_build_args="GTEST_TESTS=1" /> |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 423 | |
Lorenzo Colitti | 791bef5 | 2014-02-22 01:56:46 +0900 | [diff] [blame] | 424 | <!-- clatd --> |
| 425 | <test-native name="clatd" |
| 426 | build_path="external/android-clat" |
| 427 | description="clatd unit tests." /> |
| 428 | |
Nicolas Catania | 8595c94 | 2010-04-09 10:26:13 -0700 | [diff] [blame] | 429 | <!-- Libjingle --> |
| 430 | <test-native name="libjingle" |
| 431 | build_path="vendor/google/libraries/libjingle" |
| 432 | description="Libjingle." |
Brett Chabot | 8dc9eb8 | 2010-04-15 15:43:04 -0700 | [diff] [blame] | 433 | full_make="true" |
Nicolas Catania | 8595c94 | 2010-04-09 10:26:13 -0700 | [diff] [blame] | 434 | extra_build_args="LIBJINGLE_TESTS=1" /> |
| 435 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 436 | <!-- host java tests --> |
Brett Chabot | c5ad47c | 2010-02-17 11:22:19 -0800 | [diff] [blame] | 437 | <test-host name="frameworks-core-host" |
| 438 | build_path="frameworks/base/core/tests/hosttests" |
| 439 | class="android.content.pm.PackageManagerHostTests" |
| 440 | jar_name="FrameworkCoreHostTests.jar" /> |
| 441 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 442 | </test-definitions> |