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 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 39 | <test name="frameworks-graphics" |
| 40 | build_path="frameworks/base/graphics/tests/graphicstests" |
| 41 | package="com.android.frameworks.graphicstests" |
| 42 | coverage_target="framework" |
| 43 | continuous="true" /> |
| 44 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 45 | <test name="frameworks-location" |
| 46 | build_path="frameworks/base/location/tests/locationtests" |
| 47 | package="com.android.frameworks.locationtests" |
| 48 | coverage_target="framework" |
| 49 | continuous="true" /> |
| 50 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 51 | <test name="frameworks-sax" |
| 52 | build_path="frameworks/base/sax/tests/saxtests" |
| 53 | package="com.android.frameworks.saxtests" |
| 54 | coverage_target="framework" |
| 55 | continuous="true" /> |
| 56 | |
Neal Nguyen | d538def | 2010-02-02 17:12:22 -0800 | [diff] [blame] | 57 | <test name="frameworks-services" |
| 58 | build_path="frameworks/base/services/tests/servicestests" |
| 59 | package="com.android.frameworks.servicestests" |
| 60 | coverage_target="framework" |
| 61 | continuous="true" /> |
| 62 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 63 | <test name="frameworks-telephony" |
| 64 | build_path="frameworks/base/telephony/tests/telephonytests" |
| 65 | package="com.android.frameworks.telephonytests" |
| 66 | coverage_target="framework" |
| 67 | continuous="true" /> |
| 68 | |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 69 | <test name="frameworks-testrunner" |
Brett Chabot | 786f4db | 2010-02-20 20:07:38 -0800 | [diff] [blame] | 70 | build_path="frameworks/base/test-runner" |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 71 | package="com.android.frameworks.testrunner.tests" |
Brett Chabot | 786f4db | 2010-02-20 20:07:38 -0800 | [diff] [blame] | 72 | coverage_target="android.test.runner" |
Brett Chabot | 0145eaf | 2010-02-18 18:55:11 -0800 | [diff] [blame] | 73 | continuous="true" /> |
| 74 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 75 | <test name="frameworks-vpn" |
| 76 | build_path="frameworks/base/vpn/tests/vpntests" |
| 77 | package="com.android.frameworks.vpntests" |
| 78 | coverage_target="framework" |
| 79 | continuous="true" /> |
| 80 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 81 | <test name="core" |
| 82 | build_path="frameworks/base/tests/CoreTests" |
| 83 | package="android.core" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 84 | coverage_target="framework" |
| 85 | continuous="true" /> |
| 86 | |
Chung-yih Wang | 84dcb45 | 2009-09-29 11:27:11 +0800 | [diff] [blame] | 87 | <test name="keystore-unit" |
| 88 | build_path="frameworks/base/keystore/tests" |
| 89 | package="android.security.tests" |
| 90 | runner=".KeyStoreTestRunner" |
| 91 | coverage_target="framework" |
| 92 | continuous="true" /> |
| 93 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 94 | <test name="imf" |
| 95 | build_path="frameworks/base/tests/ImfTest" |
| 96 | package="com.android.imftest.tests" |
| 97 | coverage_target="framework" |
| 98 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 99 | |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 100 | <test name="framework-permission" |
| 101 | build_path="frameworks/base/tests/permission" |
| 102 | package="com.android.framework.permission.tests" |
| 103 | runner="android.test.InstrumentationTestRunner" |
| 104 | coverage_target="framework" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 105 | continuous="true" /> |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 106 | |
Brett Chabot | 8c63b97 | 2010-04-05 12:19:17 -0700 | [diff] [blame] | 107 | <test name="android-common" |
Dan Egnor | e970b3d | 2009-11-18 12:05:35 -0800 | [diff] [blame] | 108 | build_path="frameworks/base/common/tests" |
Brett Chabot | f692a04 | 2010-04-02 08:50:02 -0700 | [diff] [blame] | 109 | package="com.android.common.tests" |
| 110 | coverage_target="framework" |
| 111 | continuous="true" /> |
Dan Egnor | e970b3d | 2009-11-18 12:05:35 -0800 | [diff] [blame] | 112 | |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 113 | <!-- end of framework tests --> |
| 114 | |
| 115 | <!-- media framework tests --> |
| 116 | <test name="media" |
| 117 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 118 | package="com.android.mediaframeworktest" |
| 119 | runner=".MediaFrameworkTestRunner" |
| 120 | coverage_target="framework" |
| 121 | continuous="true" /> |
| 122 | |
| 123 | <test name="mediaapitest" |
| 124 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 125 | package="com.android.mediaframeworktest" |
| 126 | class="com.android.mediaframeworktest.functional.MediaPlayerApiTest" |
| 127 | runner=".MediaFrameworkTestRunner" |
| 128 | coverage_target="framework" /> |
| 129 | |
| 130 | <test name="mediarecordertest" |
| 131 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 132 | package="com.android.mediaframeworktest" |
| 133 | class="com.android.mediaframeworktest.functional.MediaRecorderTest" |
| 134 | runner=".MediaFrameworkTestRunner" |
| 135 | coverage_target="framework" /> |
| 136 | |
| 137 | <test name="mediastresstest" |
| 138 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 139 | package="com.android.mediaframeworktest" |
| 140 | runner=".MediaRecorderStressTestRunner" |
| 141 | coverage_target="framework" /> |
| 142 | |
| 143 | <test name="mediamemorystress" |
| 144 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 145 | package="com.android.mediaframeworktest" |
| 146 | runner=".MediaFrameworkPerfTestRunner" |
| 147 | coverage_target="framework" /> |
| 148 | |
| 149 | <test name="mediaunit" |
| 150 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 151 | package="com.android.mediaframeworktest" |
| 152 | runner=".MediaFrameworkUnitTestRunner" |
| 153 | coverage_target="framework" /> |
| 154 | |
| 155 | <!-- end of media framework tests --> |
| 156 | |
| 157 | <!-- targeted framework tests --> |
| 158 | <test name="account" |
| 159 | build_path="frameworks/base/core/tests/coretests" |
| 160 | package="com.android.frameworks.coretests" |
| 161 | class="android.accounts.AccountManagerServiceTest" |
| 162 | coverage_target="framework" /> |
| 163 | |
| 164 | <test name="smoke" |
| 165 | build_path="frameworks/base/tests/SmokeTest" |
| 166 | package="com.android.smoketest.tests" |
| 167 | coverage_target="framework" |
| 168 | continuous="true" /> |
| 169 | |
| 170 | <test name="launchperf" |
| 171 | build_path="development/apps/launchperf" |
| 172 | package="com.android.launchperf" |
| 173 | runner=".SimpleActivityLaunchPerformance" |
| 174 | coverage_target="framework" /> |
| 175 | |
| 176 | <test name="contentprovideroperation" |
| 177 | build_path="frameworks/base/core/tests/coretests" |
| 178 | package="com.android.frameworks.coretests" |
| 179 | class="android.content.ContentProviderOperationTest" |
| 180 | coverage_target="framework" /> |
| 181 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 182 | <!-- cts tests --> |
| 183 | |
| 184 | <test name="cts-permission" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 185 | build_path="cts/tests/tests/permission" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 186 | package="com.android.cts.permission" |
Brett Chabot | d6af1fb | 2009-06-09 19:41:27 -0700 | [diff] [blame] | 187 | runner="android.test.InstrumentationTestRunner" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 188 | coverage_target="framework" |
| 189 | continuous="true" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 190 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 191 | |
Brett Chabot | fe905a8 | 2009-06-19 18:32:14 -0700 | [diff] [blame] | 192 | <test name="cts-permission2" |
| 193 | build_path="cts/tests/tests/permission2" |
| 194 | package="com.android.cts.permission2" |
| 195 | runner="android.test.InstrumentationTestRunner" |
| 196 | coverage_target="framework" |
| 197 | continuous="true" |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 198 | suite="true" /> |
Brett Chabot | fe905a8 | 2009-06-19 18:32:14 -0700 | [diff] [blame] | 199 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 200 | <test name="cts-process" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 201 | build_path="cts/tests/tests/process" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 202 | package="com.android.cts.process" |
| 203 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 204 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 205 | |
| 206 | <test name="cts-api-signature" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 207 | build_path="cts/tests/SignatureTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 208 | package="android.tests.sigtest" |
| 209 | runner=".InstrumentationRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 210 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 211 | |
| 212 | <test name="cts-api-signature-func" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 213 | build_path="cts/tests/SignatureTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 214 | package="android.tests.sigtest.tests" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 215 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 216 | |
| 217 | <test name="cts-apidemos" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 218 | build_path="cts/tests/ApiDemosReferenceTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 219 | package="android.apidemos.cts" |
| 220 | coverage_target="ApiDemos" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 221 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 222 | |
| 223 | <test name="cts-app" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 224 | build_path="cts/tests/tests/app" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 225 | package="com.android.cts.app" |
| 226 | runner="android.test.InstrumentationCtsTestRunner" |
| 227 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 228 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 229 | |
| 230 | <test name="cts-content" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 231 | build_path="cts/tests/tests/content" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 232 | package="com.android.cts.content" |
Brett Chabot | 4d1a3b8 | 2010-01-27 17:17:16 -0800 | [diff] [blame] | 233 | runner="android.test.InstrumentationTestRunner" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 234 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 235 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 236 | |
| 237 | <test name="cts-database" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 238 | build_path="cts/tests/tests/database" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 239 | package="com.android.cts.database" |
| 240 | runner="android.test.InstrumentationCtsTestRunner" |
| 241 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 242 | suite="cts" /> |
Nicolas Catania | c1d79ee | 2009-09-14 19:06:34 -0700 | [diff] [blame] | 243 | |
Brett Chabot | 08a3dc0 | 2009-08-26 11:58:23 -0700 | [diff] [blame] | 244 | <test name="cts-gesture" |
| 245 | build_path="cts/tests/tests/gesture" |
| 246 | package="com.android.cts.gesture" |
| 247 | runner="android.test.InstrumentationTestRunner" |
| 248 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 249 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 250 | |
| 251 | <test name="cts-graphics" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 252 | build_path="cts/tests/tests/graphics" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 253 | package="com.android.cts.graphics" |
| 254 | runner="android.test.InstrumentationCtsTestRunner" |
| 255 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 256 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 257 | |
| 258 | <test name="cts-hardware" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 259 | build_path="cts/tests/tests/hardware" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 260 | package="com.android.cts.hardware" |
Brett Chabot | 8864a9a | 2010-03-30 19:46:27 -0700 | [diff] [blame] | 261 | runner="android.test.InstrumentationTestRunner" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 262 | coverage_target="framework" |
Brett Chabot | 8864a9a | 2010-03-30 19:46:27 -0700 | [diff] [blame] | 263 | continuous="true" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 264 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 265 | |
| 266 | <test name="cts-location" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 267 | build_path="cts/tests/tests/location" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 268 | package="com.android.cts.location" |
| 269 | runner="android.test.InstrumentationCtsTestRunner" |
| 270 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 271 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 272 | |
Brett Chabot | 9f7ae08 | 2009-09-23 11:38:25 -0700 | [diff] [blame] | 273 | <test name="cts-media" |
| 274 | build_path="cts/tests/tests/media" |
| 275 | package="com.android.cts.media" |
| 276 | runner="android.test.InstrumentationCtsTestRunner" |
| 277 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 278 | suite="cts" /> |
Brett Chabot | 9f7ae08 | 2009-09-23 11:38:25 -0700 | [diff] [blame] | 279 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 280 | <test name="cts-net" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 281 | build_path="cts/tests/tests/net" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 282 | package="com.android.cts.net" |
| 283 | runner="android.test.InstrumentationCtsTestRunner" |
| 284 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 285 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 286 | |
| 287 | <test name="cts-os" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 288 | build_path="cts/tests/tests/os" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 289 | package="com.android.cts.os" |
| 290 | runner="android.test.InstrumentationCtsTestRunner" |
| 291 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 292 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 293 | |
| 294 | <test name="cts-perf1" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 295 | build_path="cts/tests/tests/performance" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 296 | package="com.android.cts.performance" |
| 297 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 298 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 299 | |
| 300 | <test name="cts-perf2" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 301 | build_path="cts/tests/tests/performance2" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 302 | package="com.android.cts.performance2" |
| 303 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 304 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 305 | |
| 306 | <test name="cts-perf3" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 307 | build_path="cts/tests/tests/performance3" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 308 | package="com.android.cts.performance3" |
| 309 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 310 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 311 | |
| 312 | <test name="cts-perf4" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 313 | build_path="cts/tests/tests/performance4" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 314 | package="com.android.cts.performance4" |
| 315 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 316 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 317 | |
| 318 | <test name="cts-perf5" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 319 | build_path="cts/tests/tests/performance5" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 320 | package="com.android.cts.performance5" |
| 321 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 322 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 323 | |
| 324 | <test name="cts-provider" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 325 | build_path="cts/tests/tests/provider" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 326 | package="com.android.cts.provider" |
| 327 | runner="android.test.InstrumentationCtsTestRunner" |
| 328 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 329 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 330 | |
| 331 | <test name="cts-text" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 332 | build_path="cts/tests/tests/text" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 333 | package="com.android.cts.text" |
| 334 | runner="android.test.InstrumentationCtsTestRunner" |
| 335 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 336 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 337 | |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 338 | <test name="cts-telephony" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 339 | build_path="cts/tests/tests/telephony" |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 340 | package="com.android.cts.telephony" |
| 341 | runner="android.test.InstrumentationCtsTestRunner" |
| 342 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 343 | suite="cts" /> |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 344 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 345 | <test name="cts-util" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 346 | build_path="cts/tests/tests/util" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 347 | package="com.android.cts.util" |
| 348 | runner="android.test.InstrumentationCtsTestRunner" |
| 349 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 350 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 351 | |
| 352 | <test name="cts-view" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 353 | build_path="cts/tests/tests/view" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 354 | package="com.android.cts.view" |
| 355 | runner="android.test.InstrumentationCtsTestRunner" |
| 356 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 357 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 358 | |
Brett Chabot | cc6799a | 2009-09-10 15:08:58 -0700 | [diff] [blame] | 359 | <test name="cts-webkit" |
| 360 | build_path="cts/tests/tests/webkit" |
| 361 | package="com.android.cts.webkit" |
| 362 | runner="android.test.InstrumentationCtsTestRunner" |
| 363 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 364 | suite="cts" /> |
Brett Chabot | cc6799a | 2009-09-10 15:08:58 -0700 | [diff] [blame] | 365 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 366 | <test name="cts-widget" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 367 | build_path="cts/tests/tests/widget" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 368 | package="com.android.cts.widget" |
| 369 | runner="android.test.InstrumentationCtsTestRunner" |
| 370 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 371 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 372 | |
| 373 | <!-- end of cts tests --> |
| 374 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 375 | <!-- selected app tests --> |
Brett Chabot | a6f3b0a | 2010-04-01 18:38:31 -0700 | [diff] [blame] | 376 | <test name="apidemos" |
| 377 | build_path="development/samples/ApiDemos" |
| 378 | package="com.example.android.apis.tests" /> |
| 379 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 380 | <test name="browser" |
| 381 | build_path="packages/apps/Browser" |
Brett Chabot | f692a04 | 2010-04-02 08:50:02 -0700 | [diff] [blame] | 382 | package="com.android.browser.tests" |
Rajni Arora Batra | 6994e55 | 2010-04-02 17:55:52 -0700 | [diff] [blame] | 383 | coverage_target="Browser" |
| 384 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 385 | |
| 386 | <test name="calendar" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 387 | build_path="packages/apps/Calendar" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 388 | package="com.android.calendar.tests" |
| 389 | coverage_target="Calendar" |
| 390 | continuous="true" /> |
| 391 | |
| 392 | <test name="calprov" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 393 | build_path="packages/providers/CalendarProvider" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 394 | package="com.android.providers.calendar.tests" |
Swarna Kumar | 8aca5b8 | 2009-07-30 15:03:25 -0700 | [diff] [blame] | 395 | coverage_target="CalendarProvider" |
| 396 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 397 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 398 | <test name="contactsprov" |
Swarna Kumar | 3bf043f | 2010-03-22 15:38:22 -0700 | [diff] [blame] | 399 | build_path="packages/providers/ContactsProvider" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 400 | package="com.android.providers.contacts.tests" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 401 | coverage_target="ContactsProvider" |
| 402 | continuous="true" /> |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 403 | |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 404 | <test name="contacts" |
| 405 | build_path="packages/apps/Contacts" |
| 406 | package="com.android.contacts.tests" |
| 407 | runner="android.test.InstrumentationTestRunner" |
| 408 | coverage_target="Contacts" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 409 | description="Tests for the Contacts app." |
| 410 | continuous="true" /> |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 411 | |
Brett Chabot | cf87c98 | 2009-11-12 11:47:16 -0800 | [diff] [blame] | 412 | <test name="contacts-launch" |
| 413 | build_path="packages/apps/Contacts" |
| 414 | package="com.android.contacts.tests" |
| 415 | runner="com.android.contacts.ContactsLaunchPerformance" |
| 416 | description="Launch performance for Contacts." /> |
| 417 | |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 418 | <test name="downloadprovider-permission" |
| 419 | build_path="packages/providers/DownloadProvider/tests/permission" |
| 420 | package="com.android.providers.downloads.permission.tests" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 421 | coverage_target="DownloadProvider" |
| 422 | continuous="true" /> |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 423 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 424 | <test name="email" |
| 425 | build_path="packages/apps/Email" |
| 426 | package="com.android.email.tests" |
| 427 | coverage_target="Email" |
| 428 | continuous="true" /> |
| 429 | |
| 430 | <test name="emailsmall" |
| 431 | build_path="packages/apps/Email" |
| 432 | package="com.android.email.tests" |
| 433 | class="com.android.email.SmallTests" |
| 434 | coverage_target="Email" /> |
| 435 | |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 436 | <test name="musicplayer" |
| 437 | build_path="packages/apps/Music" |
| 438 | package="com.android.music.tests" |
| 439 | runner=".MusicPlayerFunctionalTestRunner" |
Yu Shan Emily Lau | d17eb0b | 2009-04-09 13:55:00 -0700 | [diff] [blame] | 440 | coverage_target="Music" /> |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 441 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 442 | <test name="mms" |
| 443 | build_path="packages/apps/Mms" |
| 444 | package="com.android.mms.tests" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 445 | coverage_target="Mms" /> |
| 446 | |
Nicolas Catania | 6f0366f | 2009-12-07 13:03:13 -0800 | [diff] [blame] | 447 | <!-- Unit tests for the phone application. --> |
| 448 | <test name="phone-unit" |
| 449 | build_path="packages/apps/Phone" |
| 450 | package="com.android.phone.tests" |
| 451 | continuous="true" |
| 452 | coverage_target="Phone" /> |
| 453 | |
Bryan Mawhinney | d75939d | 2010-02-05 17:17:13 +0000 | [diff] [blame] | 454 | <test name="quicksearchbox" |
| 455 | build_path="packages/apps/QuickSearchBox" |
| 456 | package="com.android.quicksearchbox.tests" |
Brett Chabot | 79a612b | 2010-04-05 16:37:59 -0700 | [diff] [blame] | 457 | coverage_target="QuickSearchBox" /> |
Bryan Mawhinney | d75939d | 2010-02-05 17:17:13 +0000 | [diff] [blame] | 458 | |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 459 | <!-- native tests --> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 460 | |
| 461 | <!-- Bionic C++ --> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 462 | <test-native name="libstdcpp" |
| 463 | build_path="system/extras/tests/bionic/libstdc++" |
Niko Catania | 55ebbc4 | 2009-04-03 14:13:05 -0700 | [diff] [blame] | 464 | description="Bionic libstdc++." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 465 | extra_build_args="BIONIC_TESTS=1" /> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 466 | |
Wei-Ta Chen | b515fb1 | 2009-05-28 13:42:14 -0700 | [diff] [blame] | 467 | <test-native name="libskia" |
| 468 | build_path="external/skia/tests" |
| 469 | description="Skia tests." /> |
| 470 | |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 471 | <!-- Android STL tests --> |
| 472 | <test-native name="astl" |
| 473 | build_path="external/astl/tests" |
| 474 | description="Android STL." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 475 | extra_build_args="ASTL_TESTS=1" /> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 476 | |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 477 | <!-- Google Test --> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 478 | <test-native name="gtest" |
| 479 | build_path="external/gtest" |
| 480 | description="Google test." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 481 | extra_build_args="GTEST_TESTS=1" /> |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 482 | |
Nicolas Catania | 8595c94 | 2010-04-09 10:26:13 -0700 | [diff] [blame] | 483 | <!-- Libjingle --> |
| 484 | <test-native name="libjingle" |
| 485 | build_path="vendor/google/libraries/libjingle" |
| 486 | description="Libjingle." |
Brett Chabot | 8dc9eb8 | 2010-04-15 15:43:04 -0700 | [diff] [blame^] | 487 | full_make="true" |
Nicolas Catania | 8595c94 | 2010-04-09 10:26:13 -0700 | [diff] [blame] | 488 | extra_build_args="LIBJINGLE_TESTS=1" /> |
| 489 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 490 | <!-- host java tests --> |
Brett Chabot | 222c8a0 | 2009-07-10 12:39:26 -0400 | [diff] [blame] | 491 | <test-host name="cts-appsecurity" |
| 492 | build_path="cts/tests/appsecurity-tests" |
| 493 | class="com.android.cts.appsecurity.AppSecurityTests" |
| 494 | jar_name="CtsAppSecurityTests.jar" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame] | 495 | suite="cts" /> |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 496 | |
Brett Chabot | c5ad47c | 2010-02-17 11:22:19 -0800 | [diff] [blame] | 497 | <test-host name="frameworks-core-host" |
| 498 | build_path="frameworks/base/core/tests/hosttests" |
| 499 | class="android.content.pm.PackageManagerHostTests" |
| 500 | jar_name="FrameworkCoreHostTests.jar" /> |
| 501 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 502 | </test-definitions> |