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" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 36 | coverage_target="framework" |
| 37 | continuous="true" /> |
| 38 | |
| 39 | <test name="android" |
| 40 | build_path="frameworks/base/tests/AndroidTests" |
| 41 | package="com.android.unit_tests" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 42 | coverage_target="framework" |
| 43 | continuous="true" /> |
| 44 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 45 | <!-- frameworks tests --> |
| 46 | <test name="frameworks-core" |
| 47 | build_path="frameworks/base/core/tests/coretests" |
| 48 | package="com.android.frameworks.coretests" |
| 49 | coverage_target="framework" |
| 50 | continuous="true" /> |
| 51 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 52 | <test name="frameworks-graphics" |
| 53 | build_path="frameworks/base/graphics/tests/graphicstests" |
| 54 | package="com.android.frameworks.graphicstests" |
| 55 | coverage_target="framework" |
| 56 | continuous="true" /> |
| 57 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 58 | <test name="frameworks-location" |
| 59 | build_path="frameworks/base/location/tests/locationtests" |
| 60 | package="com.android.frameworks.locationtests" |
| 61 | coverage_target="framework" |
| 62 | continuous="true" /> |
| 63 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 64 | <test name="frameworks-sax" |
| 65 | build_path="frameworks/base/sax/tests/saxtests" |
| 66 | package="com.android.frameworks.saxtests" |
| 67 | coverage_target="framework" |
| 68 | continuous="true" /> |
| 69 | |
Neal Nguyen | d538def | 2010-02-02 17:12:22 -0800 | [diff] [blame] | 70 | <test name="frameworks-services" |
| 71 | build_path="frameworks/base/services/tests/servicestests" |
| 72 | package="com.android.frameworks.servicestests" |
| 73 | coverage_target="framework" |
| 74 | continuous="true" /> |
| 75 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 76 | <test name="frameworks-telephony" |
| 77 | build_path="frameworks/base/telephony/tests/telephonytests" |
| 78 | package="com.android.frameworks.telephonytests" |
| 79 | coverage_target="framework" |
| 80 | continuous="true" /> |
| 81 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 82 | <test name="frameworks-vpn" |
| 83 | build_path="frameworks/base/vpn/tests/vpntests" |
| 84 | package="com.android.frameworks.vpntests" |
| 85 | coverage_target="framework" |
| 86 | continuous="true" /> |
| 87 | |
Neal Nguyen | adce566 | 2010-01-14 14:13:37 -0800 | [diff] [blame] | 88 | <!-- end of framework tests --> |
| 89 | |
Jeff Hamilton | 4865c53 | 2009-11-19 10:15:23 -0800 | [diff] [blame] | 90 | <!-- subset of the android tests for just the database tests --> |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 91 | <!--test name="database" |
| 92 | build_path="frameworks/base/core/tests/coretests" |
| 93 | package="com.android.frameworks.coretests" |
| 94 | coverage_target="framework" /--> |
Jeff Hamilton | 4865c53 | 2009-11-19 10:15:23 -0800 | [diff] [blame] | 95 | |
Brett Chabot | 6c6c1ab | 2009-05-06 11:45:33 -0700 | [diff] [blame] | 96 | <test name="account" |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 97 | build_path="frameworks/base/core/tests/coretests" |
| 98 | package="com.android.frameworks.coretests" |
| 99 | class="android.accounts.AccountManagerServiceTest" |
Brett Chabot | 6c6c1ab | 2009-05-06 11:45:33 -0700 | [diff] [blame] | 100 | coverage_target="framework" /> |
| 101 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 102 | <test name="smoke" |
| 103 | build_path="frameworks/base/tests/SmokeTest" |
| 104 | package="com.android.smoketest.tests" |
| 105 | coverage_target="framework" |
| 106 | continuous="true" /> |
| 107 | |
| 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 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 114 | <test name="apidemos" |
| 115 | build_path="development/samples/ApiDemos" |
| 116 | package="com.example.android.apis.tests" |
Brett Chabot | 9cf2f6f | 2009-10-08 15:33:33 -0700 | [diff] [blame] | 117 | coverage_target="ApiDemos" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 118 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 119 | <test name="launchperf" |
| 120 | build_path="development/apps/launchperf" |
| 121 | package="com.android.launchperf" |
Brett Chabot | a6851d7 | 2009-08-10 17:12:27 -0700 | [diff] [blame] | 122 | runner=".SimpleActivityLaunchPerformance" |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 123 | coverage_target="framework" /> |
| 124 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 125 | <!-- targeted framework tests --> |
| 126 | <test name="heap" |
| 127 | build_path="frameworks/base/tests/AndroidTests" |
| 128 | package="com.android.unit_tests" |
| 129 | class="com.android.unit_tests.HeapTest" |
| 130 | coverage_target="framework" /> |
| 131 | |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 132 | <!--test name="activity" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 133 | build_path="frameworks/base/tests/AndroidTests" |
| 134 | package="com.android.unit_tests" |
| 135 | class="com.android.unit_tests.activity.ActivityTests" |
Neal Nguyen | 04bcaad | 2010-01-25 15:33:21 -0800 | [diff] [blame] | 136 | coverage_target="framework" /--> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 137 | |
Chung-yih Wang | 84dcb45 | 2009-09-29 11:27:11 +0800 | [diff] [blame] | 138 | <test name="keystore-unit" |
| 139 | build_path="frameworks/base/keystore/tests" |
| 140 | package="android.security.tests" |
| 141 | runner=".KeyStoreTestRunner" |
| 142 | coverage_target="framework" |
| 143 | continuous="true" /> |
| 144 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 145 | <!-- obsolete? |
| 146 | <test name="deadlock" |
| 147 | build_path="frameworks/base/tests/Deadlock" |
| 148 | package="com.android.deadlock.tests" |
| 149 | coverage_target="framework" /> |
| 150 | --> |
| 151 | |
| 152 | |
Fred Quintana | 83ce803 | 2009-05-20 18:38:38 -0700 | [diff] [blame] | 153 | <test name="contentprovideroperation" |
Neal Nguyen | af94291 | 2010-01-15 19:43:23 -0800 | [diff] [blame] | 154 | build_path="frameworks/base/core/tests/coretests" |
| 155 | package="com.android.frameworks.coretests" |
Fred Quintana | 83ce803 | 2009-05-20 18:38:38 -0700 | [diff] [blame] | 156 | class="android.content.ContentProviderOperationTest" |
| 157 | coverage_target="framework" /> |
| 158 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 159 | <test name="tablemerger" |
| 160 | build_path="frameworks/base/tests/FrameworkTest" |
| 161 | package="com.android.frameworktest.tests" |
Fred Quintana | 7dbb3c2 | 2009-12-11 13:18:02 -0800 | [diff] [blame] | 162 | class="com.google.android.gsf.AbstractTableMergerTest" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 163 | coverage_target="framework" /> |
| 164 | |
The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame] | 165 | <test name="imf" |
| 166 | build_path="frameworks/base/tests/ImfTest" |
| 167 | package="com.android.imftest.tests" |
| 168 | coverage_target="framework" |
| 169 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 170 | |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 171 | <test name="framework-permission" |
| 172 | build_path="frameworks/base/tests/permission" |
| 173 | package="com.android.framework.permission.tests" |
| 174 | runner="android.test.InstrumentationTestRunner" |
| 175 | coverage_target="framework" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 176 | continuous="true" /> |
Brett Chabot | 2e1ac5d | 2009-06-15 10:46:49 -0700 | [diff] [blame] | 177 | |
Dan Egnor | e970b3d | 2009-11-18 12:05:35 -0800 | [diff] [blame] | 178 | <test name="common" |
| 179 | build_path="frameworks/base/common/tests" |
| 180 | package="com.android.common.tests" /> |
| 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" |
| 198 | cts="true" /> |
| 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" |
| 261 | runner="android.test.InstrumentationCtsTestRunner" |
| 262 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 263 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 264 | |
| 265 | <test name="cts-location" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 266 | build_path="cts/tests/tests/location" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 267 | package="com.android.cts.location" |
| 268 | runner="android.test.InstrumentationCtsTestRunner" |
| 269 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 270 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 271 | |
Brett Chabot | 9f7ae08 | 2009-09-23 11:38:25 -0700 | [diff] [blame] | 272 | <test name="cts-media" |
| 273 | build_path="cts/tests/tests/media" |
| 274 | package="com.android.cts.media" |
| 275 | runner="android.test.InstrumentationCtsTestRunner" |
| 276 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 277 | suite="cts" /> |
Brett Chabot | 9f7ae08 | 2009-09-23 11:38:25 -0700 | [diff] [blame] | 278 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 279 | <test name="cts-net" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 280 | build_path="cts/tests/tests/net" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 281 | package="com.android.cts.net" |
| 282 | runner="android.test.InstrumentationCtsTestRunner" |
| 283 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 284 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 285 | |
| 286 | <test name="cts-os" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 287 | build_path="cts/tests/tests/os" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 288 | package="com.android.cts.os" |
| 289 | runner="android.test.InstrumentationCtsTestRunner" |
| 290 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 291 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 292 | |
| 293 | <test name="cts-perf1" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 294 | build_path="cts/tests/tests/performance" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 295 | package="com.android.cts.performance" |
| 296 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 297 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 298 | |
| 299 | <test name="cts-perf2" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 300 | build_path="cts/tests/tests/performance2" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 301 | package="com.android.cts.performance2" |
| 302 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 303 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 304 | |
| 305 | <test name="cts-perf3" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 306 | build_path="cts/tests/tests/performance3" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 307 | package="com.android.cts.performance3" |
| 308 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 309 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 310 | |
| 311 | <test name="cts-perf4" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 312 | build_path="cts/tests/tests/performance4" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 313 | package="com.android.cts.performance4" |
| 314 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 315 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 316 | |
| 317 | <test name="cts-perf5" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 318 | build_path="cts/tests/tests/performance5" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 319 | package="com.android.cts.performance5" |
| 320 | runner="android.test.InstrumentationCtsTestRunner" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 321 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 322 | |
| 323 | <test name="cts-provider" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 324 | build_path="cts/tests/tests/provider" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 325 | package="com.android.cts.provider" |
| 326 | runner="android.test.InstrumentationCtsTestRunner" |
| 327 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 328 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 329 | |
| 330 | <test name="cts-text" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 331 | build_path="cts/tests/tests/text" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 332 | package="com.android.cts.text" |
| 333 | runner="android.test.InstrumentationCtsTestRunner" |
| 334 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 335 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 336 | |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 337 | <test name="cts-telephony" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 338 | build_path="cts/tests/tests/telephony" |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 339 | package="com.android.cts.telephony" |
| 340 | runner="android.test.InstrumentationCtsTestRunner" |
| 341 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 342 | suite="cts" /> |
Brett Chabot | f9775ca | 2009-08-11 20:06:07 -0700 | [diff] [blame] | 343 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 344 | <test name="cts-util" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 345 | build_path="cts/tests/tests/util" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 346 | package="com.android.cts.util" |
| 347 | runner="android.test.InstrumentationCtsTestRunner" |
| 348 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 349 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 350 | |
| 351 | <test name="cts-view" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 352 | build_path="cts/tests/tests/view" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 353 | package="com.android.cts.view" |
| 354 | runner="android.test.InstrumentationCtsTestRunner" |
| 355 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 356 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 357 | |
Brett Chabot | cc6799a | 2009-09-10 15:08:58 -0700 | [diff] [blame] | 358 | <test name="cts-webkit" |
| 359 | build_path="cts/tests/tests/webkit" |
| 360 | package="com.android.cts.webkit" |
| 361 | runner="android.test.InstrumentationCtsTestRunner" |
| 362 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 363 | suite="cts" /> |
Brett Chabot | cc6799a | 2009-09-10 15:08:58 -0700 | [diff] [blame] | 364 | |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 365 | <test name="cts-widget" |
Brett Chabot | 2477b38 | 2009-09-23 18:05:28 -0700 | [diff] [blame] | 366 | build_path="cts/tests/tests/widget" |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 367 | package="com.android.cts.widget" |
| 368 | runner="android.test.InstrumentationCtsTestRunner" |
| 369 | coverage_target="framework" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 370 | suite="cts" /> |
Brett Chabot | 49b7711 | 2009-06-02 11:46:04 -0700 | [diff] [blame] | 371 | |
| 372 | <!-- end of cts tests --> |
| 373 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 374 | <!-- selected app tests --> |
| 375 | <test name="browser" |
| 376 | build_path="packages/apps/Browser" |
| 377 | package="com.android.browser" |
| 378 | runner=".BrowserTestRunner" |
| 379 | coverage_target="Browser" /> |
| 380 | |
| 381 | <test name="browserfunc" |
| 382 | build_path="packages/apps/Browser" |
| 383 | package="com.android.browser" |
| 384 | runner=".BrowserFunctionalTestRunner" |
| 385 | coverage_target="Browser" /> |
| 386 | |
| 387 | <test name="calendar" |
| 388 | build_path="packages/apps/Calendar/tests" |
| 389 | package="com.android.calendar.tests" |
| 390 | coverage_target="Calendar" |
| 391 | continuous="true" /> |
| 392 | |
| 393 | <test name="calprov" |
| 394 | build_path="packages/providers/CalendarProvider/tests" |
| 395 | package="com.android.providers.calendar.tests" |
Swarna Kumar | 8aca5b8 | 2009-07-30 15:03:25 -0700 | [diff] [blame] | 396 | coverage_target="CalendarProvider" |
| 397 | continuous="true" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 398 | |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 399 | <test name="camerastress" |
Owen Lin | 5f563d0 | 2009-05-21 19:36:34 -0700 | [diff] [blame] | 400 | build_path="packages/apps/Camera" |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 401 | package="com.android.camera.tests" |
| 402 | class="com.android.camera.StressTests" |
| 403 | coverage_target="Camera" /> |
| 404 | |
Yu Shan Emily Lau | 4c48ea2 | 2009-06-09 14:31:39 -0700 | [diff] [blame] | 405 | <test name="cameralatency" |
| 406 | build_path="packages/apps/Camera" |
| 407 | package="com.android.camera.tests" |
| 408 | class="com.android.camera.stress.CameraLatency" |
| 409 | coverage_target="Camera" /> |
| 410 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 411 | <test name="camera" |
Owen Lin | 5f563d0 | 2009-05-21 19:36:34 -0700 | [diff] [blame] | 412 | build_path="packages/apps/Camera" |
Owen Lin | 04eccd8 | 2009-05-14 18:55:34 -0700 | [diff] [blame] | 413 | package="com.android.camera.tests" |
| 414 | class="com.android.camera.UnitTests" |
| 415 | continuous="true" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 416 | coverage_target="Camera" /> |
| 417 | |
| 418 | <test name="contactsprov" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 419 | build_path="packages/providers/ContactsProvider/tests" |
| 420 | package="com.android.providers.contacts.tests" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 421 | coverage_target="ContactsProvider" |
| 422 | continuous="true" /> |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 423 | |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 424 | <test name="contacts" |
| 425 | build_path="packages/apps/Contacts" |
| 426 | package="com.android.contacts.tests" |
| 427 | runner="android.test.InstrumentationTestRunner" |
| 428 | coverage_target="Contacts" |
Omari Stephens | 17a9df5 | 2009-09-29 14:16:07 -0700 | [diff] [blame] | 429 | description="Tests for the Contacts app." |
| 430 | continuous="true" /> |
Nicolas Catania | f8f452c | 2009-09-25 16:30:09 -0700 | [diff] [blame] | 431 | |
Brett Chabot | cf87c98 | 2009-11-12 11:47:16 -0800 | [diff] [blame] | 432 | <test name="contacts-launch" |
| 433 | build_path="packages/apps/Contacts" |
| 434 | package="com.android.contacts.tests" |
| 435 | runner="com.android.contacts.ContactsLaunchPerformance" |
| 436 | description="Launch performance for Contacts." /> |
| 437 | |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 438 | <test name="gcontactsprov" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 439 | build_path="packages/providers/GoogleContactsProvider/tests" |
| 440 | package="com.android.providers.contactstests" |
Omari Stephens | a341046 | 2009-09-02 13:01:11 -0700 | [diff] [blame] | 441 | coverage_target="GoogleContactsProvider" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 442 | |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 443 | <test name="downloadprovider-permission" |
| 444 | build_path="packages/providers/DownloadProvider/tests/permission" |
| 445 | package="com.android.providers.downloads.permission.tests" |
Brett Chabot | 8ccda76 | 2009-06-17 10:56:52 -0700 | [diff] [blame] | 446 | coverage_target="DownloadProvider" |
| 447 | continuous="true" /> |
Brett Chabot | 5de234e | 2009-06-15 13:04:58 -0700 | [diff] [blame] | 448 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 449 | <test name="email" |
| 450 | build_path="packages/apps/Email" |
| 451 | package="com.android.email.tests" |
| 452 | coverage_target="Email" |
| 453 | continuous="true" /> |
| 454 | |
| 455 | <test name="emailsmall" |
| 456 | build_path="packages/apps/Email" |
| 457 | package="com.android.email.tests" |
| 458 | class="com.android.email.SmallTests" |
| 459 | coverage_target="Email" /> |
| 460 | |
| 461 | <test name="media" |
| 462 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 463 | package="com.android.mediaframeworktest" |
| 464 | runner=".MediaFrameworkTestRunner" |
| 465 | coverage_target="framework" |
| 466 | continuous="true" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 467 | |
Yu Shan Emily Lau | ffbc7c9 | 2009-06-01 16:55:49 -0700 | [diff] [blame] | 468 | <test name="mediaapitest" |
| 469 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 470 | package="com.android.mediaframeworktest" |
| 471 | class="com.android.mediaframeworktest.functional.MediaPlayerApiTest" |
| 472 | runner=".MediaFrameworkTestRunner" |
| 473 | coverage_target="framework" /> |
| 474 | |
| 475 | <test name="mediarecordertest" |
| 476 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 477 | package="com.android.mediaframeworktest" |
| 478 | class="com.android.mediaframeworktest.functional.MediaRecorderTest" |
| 479 | runner=".MediaFrameworkTestRunner" |
| 480 | coverage_target="framework" /> |
| 481 | |
| 482 | <test name="mediastresstest" |
| 483 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 484 | package="com.android.mediaframeworktest" |
| 485 | runner=".MediaRecorderStressTestRunner" |
| 486 | coverage_target="framework" /> |
| 487 | |
Yu Shan Emily Lau | 4c48ea2 | 2009-06-09 14:31:39 -0700 | [diff] [blame] | 488 | <test name="mediamemorystress" |
| 489 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 490 | package="com.android.mediaframeworktest" |
| 491 | runner=".MediaFrameworkPerfTestRunner" |
| 492 | coverage_target="framework" /> |
| 493 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 494 | <test name="mediaunit" |
| 495 | build_path="frameworks/base/media/tests/MediaFrameworkTest" |
| 496 | package="com.android.mediaframeworktest" |
| 497 | runner=".MediaFrameworkUnitTestRunner" |
| 498 | coverage_target="framework" /> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 499 | |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 500 | <test name="musicplayer" |
| 501 | build_path="packages/apps/Music" |
| 502 | package="com.android.music.tests" |
| 503 | runner=".MusicPlayerFunctionalTestRunner" |
Yu Shan Emily Lau | d17eb0b | 2009-04-09 13:55:00 -0700 | [diff] [blame] | 504 | coverage_target="Music" /> |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 505 | |
| 506 | <!-- obsolete? |
| 507 | <test name="mediaprov" |
| 508 | build_path="tests/MediaProvider" |
| 509 | package="com.android.mediaprovidertests" |
| 510 | runner=".MediaProviderTestsInstrumentation" |
| 511 | coverage_target="MediaProvider" /> |
| 512 | --> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 513 | |
| 514 | <test name="mms" |
| 515 | build_path="packages/apps/Mms" |
| 516 | package="com.android.mms.tests" |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 517 | coverage_target="Mms" /> |
| 518 | |
| 519 | <test name="mmslaunch" |
| 520 | build_path="packages/apps/Mms" |
| 521 | package="com.android.mms.tests" |
| 522 | runner="com.android.mms.SmsLaunchPerformance" |
| 523 | coverage_target="Mms" /> |
| 524 | |
Nicolas Catania | 6f0366f | 2009-12-07 13:03:13 -0800 | [diff] [blame] | 525 | <!-- Unit tests for the phone application. --> |
| 526 | <test name="phone-unit" |
| 527 | build_path="packages/apps/Phone" |
| 528 | package="com.android.phone.tests" |
| 529 | continuous="true" |
| 530 | coverage_target="Phone" /> |
| 531 | |
Bryan Mawhinney | d75939d | 2010-02-05 17:17:13 +0000 | [diff] [blame] | 532 | <test name="quicksearchbox" |
| 533 | build_path="packages/apps/QuickSearchBox" |
| 534 | package="com.android.quicksearchbox.tests" |
| 535 | coverage_target="QuickSearchBox" |
| 536 | continuous="true" /> |
| 537 | |
Brett Chabot | a3a8aeb | 2009-03-31 14:51:13 -0700 | [diff] [blame] | 538 | <!-- obsolete? |
| 539 | <test name="ringtone" |
| 540 | build_path="tests/RingtoneSettings" |
| 541 | package="com.android.ringtonesettingstests" |
| 542 | runner=".RingtoneSettingsInstrumentationTestRunner" |
| 543 | coverage_target="Settings" /> |
| 544 | --> |
| 545 | |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 546 | <!-- native tests --> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 547 | |
| 548 | <!-- Bionic C++ --> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 549 | <test-native name="libstdcpp" |
| 550 | build_path="system/extras/tests/bionic/libstdc++" |
Niko Catania | 55ebbc4 | 2009-04-03 14:13:05 -0700 | [diff] [blame] | 551 | description="Bionic libstdc++." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 552 | extra_build_args="BIONIC_TESTS=1" /> |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 553 | |
Wei-Ta Chen | b515fb1 | 2009-05-28 13:42:14 -0700 | [diff] [blame] | 554 | <test-native name="libskia" |
| 555 | build_path="external/skia/tests" |
| 556 | description="Skia tests." /> |
| 557 | |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 558 | <!-- Android STL tests --> |
| 559 | <test-native name="astl" |
| 560 | build_path="external/astl/tests" |
| 561 | description="Android STL." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 562 | extra_build_args="ASTL_TESTS=1" /> |
Nicolas Catania | 18d7a4e | 2009-06-15 09:28:06 -0700 | [diff] [blame] | 563 | |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 564 | <!-- Google Test --> |
Nicolas Catania | ff096c1 | 2009-05-01 11:55:36 -0700 | [diff] [blame] | 565 | <test-native name="gtest" |
| 566 | build_path="external/gtest" |
| 567 | description="Google test." |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 568 | extra_build_args="GTEST_TESTS=1" /> |
Nicolas Catania | 13a2fcf | 2010-02-10 22:40:39 -0800 | [diff] [blame] | 569 | |
Niko Catania | 2472866 | 2009-04-02 23:33:53 -0700 | [diff] [blame] | 570 | |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 571 | <!-- host java tests --> |
Brett Chabot | 222c8a0 | 2009-07-10 12:39:26 -0400 | [diff] [blame] | 572 | <test-host name="cts-appsecurity" |
| 573 | build_path="cts/tests/appsecurity-tests" |
| 574 | class="com.android.cts.appsecurity.AppSecurityTests" |
| 575 | jar_name="CtsAppSecurityTests.jar" |
Brett Chabot | 4a5d9f1 | 2010-02-18 20:01:11 -0800 | [diff] [blame^] | 576 | suite="cts" /> |
Brett Chabot | 764d3fa | 2009-06-25 17:57:31 -0700 | [diff] [blame] | 577 | |
Brett Chabot | c5ad47c | 2010-02-17 11:22:19 -0800 | [diff] [blame] | 578 | <test-host name="frameworks-core-host" |
| 579 | build_path="frameworks/base/core/tests/hosttests" |
| 580 | class="android.content.pm.PackageManagerHostTests" |
| 581 | jar_name="FrameworkCoreHostTests.jar" /> |
| 582 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 583 | </test-definitions> |