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 | |
| 32 | <!-- system-wide tests --> |
| 33 | <test name="framework" |
| 34 | build_path="frameworks/base/tests/FrameworkTest" |
| 35 | package="com.android.frameworktest.tests" |
| 36 | class="com.android.frameworktest.AllTests" |
| 37 | coverage_target="framework" |
| 38 | continuous="true" /> |
| 39 | |
| 40 | <test name="android" |
| 41 | build_path="frameworks/base/tests/AndroidTests" |
| 42 | package="com.android.unit_tests" |
| 43 | class="com.android.unit_tests.AndroidTests" |
| 44 | coverage_target="framework" |
| 45 | continuous="true" /> |
| 46 | |
Brett Chabot | 6c6c1ab | 2009-05-06 11:45:33 -0700 | [diff] [blame] | 47 | <test name="account" |
| 48 | build_path="frameworks/base/tests/AndroidTests" |
| 49 | package="com.android.unit_tests" |
| 50 | class="com.android.unit_tests.accounts.AccountManagerServiceTest" |
| 51 | coverage_target="framework" /> |
| 52 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 53 | <test name="smoke" |
| 54 | build_path="frameworks/base/tests/SmokeTest" |
| 55 | package="com.android.smoketest.tests" |
| 56 | coverage_target="framework" |
| 57 | continuous="true" /> |
| 58 | |
| 59 | <test name="core" |
| 60 | build_path="frameworks/base/tests/CoreTests" |
| 61 | package="android.core" |
| 62 | class="android.core.CoreTests" |
| 63 | coverage_target="framework" |
| 64 | continuous="true" /> |
| 65 | |
| 66 | <test name="libcore" |
| 67 | build_path="frameworks/base/tests/CoreTests" |
| 68 | package="android.core" |
| 69 | class="android.core.JavaTests" |
| 70 | coverage_target="framework" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 71 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 72 | <test name="apidemos" |
| 73 | build_path="development/samples/ApiDemos" |
| 74 | package="com.example.android.apis.tests" |
Brett Chabot | 9cf2f6f | 2009-10-08 15:33:33 -0700 | [diff] [blame^] | 75 | coverage_target="ApiDemos" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 76 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 77 | <test name="launchperf" |
| 78 | build_path="development/apps/launchperf" |
| 79 | package="com.android.launchperf" |
Brett Chabot | a6851d7 | 2009-08-10 17:12:27 -0700 | [diff] [blame] | 80 | runner=".SimpleActivityLaunchPerformance" |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 81 | coverage_target="framework" /> |
| 82 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 83 | <!-- targeted framework tests --> |
| 84 | <test name="heap" |
| 85 | build_path="frameworks/base/tests/AndroidTests" |
| 86 | package="com.android.unit_tests" |
| 87 | class="com.android.unit_tests.HeapTest" |
| 88 | coverage_target="framework" /> |
| 89 | |
| 90 | <test name="activity" |
| 91 | build_path="frameworks/base/tests/AndroidTests" |
| 92 | package="com.android.unit_tests" |
| 93 | class="com.android.unit_tests.activity.ActivityTests" |
| 94 | coverage_target="framework" /> |
| 95 | |
Chung-yih Wang | 84dcb45 | 2009-09-29 11:27:11 +0800 | [diff] [blame] | 96 | <test name="keystore-unit" |
| 97 | build_path="frameworks/base/keystore/tests" |
| 98 | package="android.security.tests" |
| 99 | runner=".KeyStoreTestRunner" |
| 100 | coverage_target="framework" |
| 101 | continuous="true" /> |
| 102 | |
Yu Shan Emily Lau | 4fed1db | 2009-07-20 15:20:13 -0700 | [diff] [blame] | 103 | <test name="vpntests" |
| 104 | build_path="frameworks/base/tests/AndroidTests" |
| 105 | package="com.android.unit_tests" |
| 106 | class="com.android.unit_tests.VpnTest" |
| 107 | coverage_target="framework" |
| 108 | continuous="true" /> |
| 109 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 110 | <!-- obsolete? |
| 111 | <test name="deadlock" |
| 112 | build_path="frameworks/base/tests/Deadlock" |
| 113 | package="com.android.deadlock.tests" |
| 114 | coverage_target="framework" /> |
| 115 | --> |
| 116 | |
| 117 | |
Fred Quintana | 83ce803 | 2009-05-20 18:38:38 -0700 | [diff] [blame] | 118 | <test name="contentprovideroperation" |
| 119 | build_path="frameworks/base/tests/FrameworkTest" |
| 120 | package="com.android.frameworktest.tests" |
| 121 | class="android.content.ContentProviderOperationTest" |
| 122 | coverage_target="framework" /> |
| 123 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 124 | <test name="tablemerger" |
| 125 | build_path="frameworks/base/tests/FrameworkTest" |
| 126 | package="com.android.frameworktest.tests" |
| 127 | class="android.content.AbstractTableMergerTest" |
| 128 | coverage_target="framework" /> |
| 129 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 130 | <test name="imf" |
| 131 | build_path="frameworks/base/tests/ImfTest" |
| 132 | package="com.android.imftest.tests" |
| 133 | coverage_target="framework" |
| 134 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 135 | |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 136 | <test name="framework-permission" |
| 137 | build_path="frameworks/base/tests/permission" |
| 138 | package="com.android.framework.permission.tests" |
| 139 | runner="android.test.InstrumentationTestRunner" |
| 140 | coverage_target="framework" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 141 | continuous="true" /> |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 142 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 143 | <!-- cts tests --> |
| 144 | |
| 145 | <test name="cts-permission" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 146 | build_path="cts/tests/tests/permission" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 147 | package="com.android.cts.permission" |
Brett Chabot | d6af1fb | 2009-06-09 19:41:27 -0700 | [diff] [blame] | 148 | runner="android.test.InstrumentationTestRunner" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 149 | coverage_target="framework" |
| 150 | continuous="true" |
| 151 | cts="true" /> |
| 152 | |
Brett Chabot | fe905a8 | 2009-06-19 18:32:14 -0700 | [diff] [blame] | 153 | <test name="cts-permission2" |
| 154 | build_path="cts/tests/tests/permission2" |
| 155 | package="com.android.cts.permission2" |
| 156 | runner="android.test.InstrumentationTestRunner" |
| 157 | coverage_target="framework" |
| 158 | continuous="true" |
| 159 | cts="true" /> |
| 160 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 161 | <test name="cts-process" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 162 | build_path="cts/tests/tests/process" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 163 | package="com.android.cts.process" |
| 164 | coverage_target="framework" |
| 165 | cts="true" /> |
| 166 | |
| 167 | <test name="cts-api-signature" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 168 | build_path="cts/tests/SignatureTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 169 | package="android.tests.sigtest" |
| 170 | runner=".InstrumentationRunner" |
| 171 | cts="true" /> |
| 172 | |
| 173 | <test name="cts-api-signature-func" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 174 | build_path="cts/tests/SignatureTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 175 | package="android.tests.sigtest.tests" |
| 176 | cts="true" /> |
| 177 | |
| 178 | <test name="cts-apidemos" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 179 | build_path="cts/tests/ApiDemosReferenceTest" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 180 | package="android.apidemos.cts" |
| 181 | coverage_target="ApiDemos" |
| 182 | cts="true" /> |
| 183 | |
| 184 | <test name="cts-app" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 185 | build_path="cts/tests/tests/app" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 186 | package="com.android.cts.app" |
| 187 | runner="android.test.InstrumentationCtsTestRunner" |
| 188 | coverage_target="framework" |
| 189 | cts="true" /> |
| 190 | |
| 191 | <test name="cts-content" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 192 | build_path="cts/tests/tests/content" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 193 | package="com.android.cts.content" |
| 194 | runner="android.test.InstrumentationCtsTestRunner" |
| 195 | coverage_target="framework" |
| 196 | cts="true" /> |
| 197 | |
| 198 | <test name="cts-database" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 199 | build_path="cts/tests/tests/database" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 200 | package="com.android.cts.database" |
| 201 | runner="android.test.InstrumentationCtsTestRunner" |
| 202 | coverage_target="framework" |
| 203 | cts="true" /> |
Nicolas Catania | c1d79ee | 2009-09-14 19:06:34 -0700 | [diff] [blame] | 204 | |
Brett Chabot | 08a3dc0 | 2009-08-26 11:58:23 -0700 | [diff] [blame] | 205 | <test name="cts-gesture" |
| 206 | build_path="cts/tests/tests/gesture" |
| 207 | package="com.android.cts.gesture" |
| 208 | runner="android.test.InstrumentationTestRunner" |
| 209 | coverage_target="framework" |
| 210 | cts="true" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 211 | |
| 212 | <test name="cts-graphics" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 213 | build_path="cts/tests/tests/graphics" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 214 | package="com.android.cts.graphics" |
| 215 | runner="android.test.InstrumentationCtsTestRunner" |
| 216 | coverage_target="framework" |
| 217 | cts="true" /> |
| 218 | |
| 219 | <test name="cts-hardware" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 220 | build_path="cts/tests/tests/hardware" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 221 | package="com.android.cts.hardware" |
| 222 | runner="android.test.InstrumentationCtsTestRunner" |
| 223 | coverage_target="framework" |
| 224 | cts="true" /> |
| 225 | |
| 226 | <test name="cts-location" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 227 | build_path="cts/tests/tests/location" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 228 | package="com.android.cts.location" |
| 229 | runner="android.test.InstrumentationCtsTestRunner" |
| 230 | coverage_target="framework" |
| 231 | cts="true" /> |
| 232 | |
Brett Chabot | 9f7ae08 | 2009-09-23 11:38:25 -0700 | [diff] [blame] | 233 | <test name="cts-media" |
| 234 | build_path="cts/tests/tests/media" |
| 235 | package="com.android.cts.media" |
| 236 | runner="android.test.InstrumentationCtsTestRunner" |
| 237 | coverage_target="framework" |
| 238 | cts="true" /> |
| 239 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 240 | <test name="cts-net" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 241 | build_path="cts/tests/tests/net" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 242 | package="com.android.cts.net" |
| 243 | runner="android.test.InstrumentationCtsTestRunner" |
| 244 | coverage_target="framework" |
| 245 | cts="true" /> |
| 246 | |
| 247 | <test name="cts-os" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 248 | build_path="cts/tests/tests/os" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 249 | package="com.android.cts.os" |
| 250 | runner="android.test.InstrumentationCtsTestRunner" |
| 251 | coverage_target="framework" |
| 252 | cts="true" /> |
| 253 | |
| 254 | <test name="cts-perf1" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 255 | build_path="cts/tests/tests/performance" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 256 | package="com.android.cts.performance" |
| 257 | runner="android.test.InstrumentationCtsTestRunner" |
| 258 | cts="true" /> |
| 259 | |
| 260 | <test name="cts-perf2" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 261 | build_path="cts/tests/tests/performance2" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 262 | package="com.android.cts.performance2" |
| 263 | runner="android.test.InstrumentationCtsTestRunner" |
| 264 | cts="true" /> |
| 265 | |
| 266 | <test name="cts-perf3" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 267 | build_path="cts/tests/tests/performance3" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 268 | package="com.android.cts.performance3" |
| 269 | runner="android.test.InstrumentationCtsTestRunner" |
| 270 | cts="true" /> |
| 271 | |
| 272 | <test name="cts-perf4" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 273 | build_path="cts/tests/tests/performance4" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 274 | package="com.android.cts.performance4" |
| 275 | runner="android.test.InstrumentationCtsTestRunner" |
| 276 | cts="true" /> |
| 277 | |
| 278 | <test name="cts-perf5" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 279 | build_path="cts/tests/tests/performance5" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 280 | package="com.android.cts.performance5" |
| 281 | runner="android.test.InstrumentationCtsTestRunner" |
| 282 | cts="true" /> |
| 283 | |
| 284 | <test name="cts-provider" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 285 | build_path="cts/tests/tests/provider" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 286 | package="com.android.cts.provider" |
| 287 | runner="android.test.InstrumentationCtsTestRunner" |
| 288 | coverage_target="framework" |
| 289 | cts="true" /> |
| 290 | |
| 291 | <test name="cts-text" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 292 | build_path="cts/tests/tests/text" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 293 | package="com.android.cts.text" |
| 294 | runner="android.test.InstrumentationCtsTestRunner" |
| 295 | coverage_target="framework" |
| 296 | cts="true" /> |
| 297 | |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 298 | <test name="cts-telephony" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 299 | build_path="cts/tests/tests/telephony" |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 300 | package="com.android.cts.telephony" |
| 301 | runner="android.test.InstrumentationCtsTestRunner" |
| 302 | coverage_target="framework" |
| 303 | cts="true" /> |
| 304 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 305 | <test name="cts-util" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 306 | build_path="cts/tests/tests/util" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 307 | package="com.android.cts.util" |
| 308 | runner="android.test.InstrumentationCtsTestRunner" |
| 309 | coverage_target="framework" |
| 310 | cts="true" /> |
| 311 | |
| 312 | <test name="cts-view" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 313 | build_path="cts/tests/tests/view" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 314 | package="com.android.cts.view" |
| 315 | runner="android.test.InstrumentationCtsTestRunner" |
| 316 | coverage_target="framework" |
| 317 | cts="true" /> |
| 318 | |
Brett Chabot | cc6799a | 2009-09-10 15:08:58 -0700 | [diff] [blame] | 319 | <test name="cts-webkit" |
| 320 | build_path="cts/tests/tests/webkit" |
| 321 | package="com.android.cts.webkit" |
| 322 | runner="android.test.InstrumentationCtsTestRunner" |
| 323 | coverage_target="framework" |
| 324 | cts="true" /> |
| 325 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 326 | <test name="cts-widget" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 327 | build_path="cts/tests/tests/widget" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 328 | package="com.android.cts.widget" |
| 329 | runner="android.test.InstrumentationCtsTestRunner" |
| 330 | coverage_target="framework" |
| 331 | cts="true" /> |
| 332 | |
| 333 | <!-- end of cts tests --> |
| 334 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 335 | <!-- selected app tests --> |
| 336 | <test name="browser" |
| 337 | build_path="packages/apps/Browser" |
| 338 | package="com.android.browser" |
| 339 | runner=".BrowserTestRunner" |
| 340 | coverage_target="Browser" /> |
| 341 | |
| 342 | <test name="browserfunc" |
| 343 | build_path="packages/apps/Browser" |
| 344 | package="com.android.browser" |
| 345 | runner=".BrowserFunctionalTestRunner" |
| 346 | coverage_target="Browser" /> |
| 347 | |
| 348 | <test name="calendar" |
| 349 | build_path="packages/apps/Calendar/tests" |
| 350 | package="com.android.calendar.tests" |
| 351 | coverage_target="Calendar" |
| 352 | continuous="true" /> |
| 353 | |
| 354 | <test name="calprov" |
| 355 | build_path="packages/providers/CalendarProvider/tests" |
| 356 | package="com.android.providers.calendar.tests" |
Swarna Kumar | 8aca5b8 | 2009-07-30 15:03:25 -0700 | [diff] [blame] | 357 | coverage_target="CalendarProvider" |
| 358 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 359 | |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 360 | <test name="camerastress" |
Owen Lin | 5f563d0 | 2009-05-21 19:36:34 -0700 | [diff] [blame] | 361 | build_path="packages/apps/Camera" |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 362 | package="com.android.camera.tests" |
| 363 | class="com.android.camera.StressTests" |
| 364 | coverage_target="Camera" /> |
| 365 | |
Yu Shan Emily Lau | 4c48ea2 | 2009-06-09 14:31:39 -0700 | [diff] [blame] | 366 | <test name="cameralatency" |
| 367 | build_path="packages/apps/Camera" |
| 368 | package="com.android.camera.tests" |
| 369 | class="com.android.camera.stress.CameraLatency" |
| 370 | coverage_target="Camera" /> |
| 371 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 372 | <test name="camera" |
Owen Lin | 5f563d0 | 2009-05-21 19:36:34 -0700 | [diff] [blame] | 373 | build_path="packages/apps/Camera" |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 374 | package="com.android.camera.tests" |
| 375 | class="com.android.camera.UnitTests" |
| 376 | continuous="true" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 377 | coverage_target="Camera" /> |
| 378 | |
| 379 | <test name="contactsprov" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 380 | build_path="packages/providers/ContactsProvider/tests" |
| 381 | package="com.android.providers.contacts.tests" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 382 | coverage_target="ContactsProvider" |
| 383 | continuous="true" /> |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 384 | |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 385 | <test name="contacts" |
| 386 | build_path="packages/apps/Contacts" |
| 387 | package="com.android.contacts.tests" |
| 388 | runner="android.test.InstrumentationTestRunner" |
| 389 | coverage_target="Contacts" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 390 | description="Tests for the Contacts app." |
| 391 | continuous="true" /> |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 392 | |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 393 | <test name="gcontactsprov" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 394 | build_path="packages/providers/GoogleContactsProvider/tests" |
| 395 | package="com.android.providers.contactstests" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 396 | coverage_target="GoogleContactsProvider" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 397 | |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 398 | <test name="downloadprovider-permission" |
| 399 | build_path="packages/providers/DownloadProvider/tests/permission" |
| 400 | package="com.android.providers.downloads.permission.tests" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 401 | coverage_target="DownloadProvider" |
| 402 | continuous="true" /> |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 403 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 404 | <test name="email" |
| 405 | build_path="packages/apps/Email" |
| 406 | package="com.android.email.tests" |
| 407 | coverage_target="Email" |
| 408 | continuous="true" /> |
| 409 | |
| 410 | <test name="emailsmall" |
| 411 | build_path="packages/apps/Email" |
| 412 | package="com.android.email.tests" |
| 413 | class="com.android.email.SmallTests" |
| 414 | coverage_target="Email" /> |
| 415 | |
Karl Rosaen | 95315b8 | 2009-06-10 11:46:55 +0100 | [diff] [blame] | 416 | <test name="globalsearch" |
| 417 | build_path="packages/apps/GlobalSearch" |
| 418 | package="com.android.globalsearch.tests" |
| 419 | coverage_target="GlobalSearch" |
| 420 | continuous="true" /> |
| 421 | |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 422 | <test name="globalsearch-permission" |
| 423 | build_path="packages/apps/GlobalSearch" |
| 424 | package="com.android.globalsearch.permission.tests" |
| 425 | coverage_target="GlobalSearch" |
| 426 | continuous="true" /> |
| 427 | |
| 428 | <test name="improvider-permission" |
| 429 | build_path="packages/providers/ImProvider/tests/permission" |
| 430 | package="com.android.providers.im.permission.tests" |
| 431 | coverage_target="ImProvider" |
| 432 | continuous="true" /> |
| 433 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 434 | <test name="media" |
| 435 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 436 | package="com.android.mediaframeworktest" |
| 437 | runner=".MediaFrameworkTestRunner" |
| 438 | coverage_target="framework" |
| 439 | continuous="true" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 440 | |
Yu Shan Emily Lau | ffbc7c9 | 2009-06-01 16:55:49 -0700 | [diff] [blame] | 441 | <test name="mediaapitest" |
| 442 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 443 | package="com.android.mediaframeworktest" |
| 444 | class="com.android.mediaframeworktest.functional.MediaPlayerApiTest" |
| 445 | runner=".MediaFrameworkTestRunner" |
| 446 | coverage_target="framework" /> |
| 447 | |
| 448 | <test name="mediarecordertest" |
| 449 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 450 | package="com.android.mediaframeworktest" |
| 451 | class="com.android.mediaframeworktest.functional.MediaRecorderTest" |
| 452 | runner=".MediaFrameworkTestRunner" |
| 453 | coverage_target="framework" /> |
| 454 | |
| 455 | <test name="mediastresstest" |
| 456 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 457 | package="com.android.mediaframeworktest" |
| 458 | runner=".MediaRecorderStressTestRunner" |
| 459 | coverage_target="framework" /> |
| 460 | |
Yu Shan Emily Lau | 4c48ea2 | 2009-06-09 14:31:39 -0700 | [diff] [blame] | 461 | <test name="mediamemorystress" |
| 462 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 463 | package="com.android.mediaframeworktest" |
| 464 | runner=".MediaFrameworkPerfTestRunner" |
| 465 | coverage_target="framework" /> |
| 466 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 467 | <test name="mediaunit" |
| 468 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 469 | package="com.android.mediaframeworktest" |
| 470 | runner=".MediaFrameworkUnitTestRunner" |
| 471 | coverage_target="framework" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 472 | |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 473 | <test name="musicplayer" |
| 474 | build_path="packages/apps/Music" |
| 475 | package="com.android.music.tests" |
| 476 | runner=".MusicPlayerFunctionalTestRunner" |
Yu Shan Emily Lau | d17eb0b | 2009-04-09 13:55:00 -0700 | [diff] [blame] | 477 | coverage_target="Music" /> |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 478 | |
| 479 | <!-- obsolete? |
| 480 | <test name="mediaprov" |
| 481 | build_path="tests/MediaProvider" |
| 482 | package="com.android.mediaprovidertests" |
| 483 | runner=".MediaProviderTestsInstrumentation" |
| 484 | coverage_target="MediaProvider" /> |
| 485 | --> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 486 | |
| 487 | <test name="mms" |
| 488 | build_path="packages/apps/Mms" |
| 489 | package="com.android.mms.tests" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 490 | coverage_target="Mms" /> |
| 491 | |
| 492 | <test name="mmslaunch" |
| 493 | build_path="packages/apps/Mms" |
| 494 | package="com.android.mms.tests" |
| 495 | runner="com.android.mms.SmsLaunchPerformance" |
| 496 | coverage_target="Mms" /> |
| 497 | |
Nicolas Catania | c1d79ee | 2009-09-14 19:06:34 -0700 | [diff] [blame] | 498 | <test name="telephony-unit" |
| 499 | build_path="frameworks/base/telephony/tests/TelephonyTest" |
| 500 | package="com.android.telephonytest" |
| 501 | runner=".TelephonyUnitTestRunner" |
| 502 | coverage_target="framework" /> |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 503 | |
| 504 | <!-- obsolete? |
| 505 | <test name="ringtone" |
| 506 | build_path="tests/RingtoneSettings" |
| 507 | package="com.android.ringtonesettingstests" |
| 508 | runner=".RingtoneSettingsInstrumentationTestRunner" |
| 509 | coverage_target="Settings" /> |
| 510 | --> |
| 511 | |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 512 | <!-- native tests --> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 513 | |
| 514 | <!-- Bionic C++ --> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 515 | <test-native name="libstdcpp" |
| 516 | build_path="system/extras/tests/bionic/libstdc++" |
Niko Catania | 55ebbc4 | 2009-04-03 14:13:05 -0700 | [diff] [blame] | 517 | description="Bionic libstdc++." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 518 | extra_build_args="BIONIC_TESTS=1" /> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 519 | |
Wei-Ta Chen | b515fb1 | 2009-05-28 13:42:14 -0700 | [diff] [blame] | 520 | <test-native name="libskia" |
| 521 | build_path="external/skia/tests" |
| 522 | description="Skia tests." /> |
| 523 | |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 524 | <!-- Android STL tests --> |
| 525 | <test-native name="astl" |
| 526 | build_path="external/astl/tests" |
| 527 | description="Android STL." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 528 | extra_build_args="ASTL_TESTS=1" /> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 529 | |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 530 | <!-- pending patch 820 |
| 531 | <test-native name="gtest" |
| 532 | build_path="external/gtest" |
| 533 | description="Google test." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 534 | extra_build_args="GTEST_TESTS=1" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 535 | --> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 536 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 537 | <!-- host java tests --> |
Brett Chabot | 222c8a0 | 2009-07-10 12:39:26 -0400 | [diff] [blame] | 538 | <test-host name="cts-appsecurity" |
| 539 | build_path="cts/tests/appsecurity-tests" |
| 540 | class="com.android.cts.appsecurity.AppSecurityTests" |
| 541 | jar_name="CtsAppSecurityTests.jar" |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 542 | cts="true" /> |
| 543 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 544 | </test-definitions> |