blob: 27dad2d890563a1894cecbeb46daf9249655c430 [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<?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 Cataniaff096c12009-05-01 11:55:36 -07007
The Android Open Source Project52d4c302009-03-03 19:29:09 -08008 http://www.apache.org/licenses/LICENSE-2.0
Nicolas Cataniaff096c12009-05-01 11:55:36 -07009
The Android Open Source Project52d4c302009-03-03 19:29:09 -080010 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 Cataniaff096c12009-05-01 11:55:36 -070017<!--
The Android Open Source Project52d4c302009-03-03 19:29:09 -080018This file contains standard test definitions for the Android platform
Nicolas Cataniaff096c12009-05-01 11:55:36 -070019
Brett Chabot764d3fa2009-06-25 17:57:31 -070020The 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 Project52d4c302009-03-03 19:29:09 -080024
Brett Chabot764d3fa2009-06-25 17:57:31 -070025See test_defs.xsd for more information.
The Android Open Source Project52d4c302009-03-03 19:29:09 -080026-->
27
Phil Dubach7c343ce2009-05-21 16:35:22 -070028<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 Project52d4c302009-03-03 19:29:09 -080031
Neal Nguyenadce5662010-01-14 14:13:37 -080032<!-- frameworks tests -->
33<test name="frameworks-core"
34 build_path="frameworks/base/core/tests/coretests"
35 package="com.android.frameworks.coretests"
Jeremy Joslinb3449762017-02-06 13:01:09 -080036 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyenadce5662010-01-14 14:13:37 -080037 coverage_target="framework"
38 continuous="true" />
39
Lorenzo Colitti54398312016-10-28 17:13:20 +090040<test name="frameworks-net"
41 build_path="frameworks/base/tests/net"
42 package="com.android.frameworks.tests.net"
43 runner="android.support.test.runner.AndroidJUnitRunner"
44 coverage_target="framework"
45 continuous = "true" />
46
Xia Wang991ffd72010-06-29 14:59:26 -070047<!-- will not run in the continuous test as it needs both Wifi & 3G -->
48<test name="frameworks-connectivity"
49 build_path="frameworks/base/core/tests/ConnectivityManagerTest/"
50 package="com.android.connectivitymanagertest"
51 runner=".ConnectivityManagerUnitTestRunner"
52 coverage_target="framework" />
53
Neal Nguyen04bcaad2010-01-25 15:33:21 -080054<test name="frameworks-graphics"
55 build_path="frameworks/base/graphics/tests/graphicstests"
56 package="com.android.frameworks.graphicstests"
57 coverage_target="framework"
58 continuous="true" />
59
Neal Nguyenadce5662010-01-14 14:13:37 -080060<test name="frameworks-location"
61 build_path="frameworks/base/location/tests/locationtests"
62 package="com.android.frameworks.locationtests"
tccyp54f04602017-11-15 14:00:21 -080063 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyenadce5662010-01-14 14:13:37 -080064 coverage_target="framework"
65 continuous="true" />
66
Neal Nguyen04bcaad2010-01-25 15:33:21 -080067<test name="frameworks-sax"
68 build_path="frameworks/base/sax/tests/saxtests"
69 package="com.android.frameworks.saxtests"
70 coverage_target="framework"
71 continuous="true" />
72
Neal Nguyend538def2010-02-02 17:12:22 -080073<test name="frameworks-services"
74 build_path="frameworks/base/services/tests/servicestests"
75 package="com.android.frameworks.servicestests"
Christopher Wiley00d6fa72016-05-18 12:26:02 -070076 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyend538def2010-02-02 17:12:22 -080077 coverage_target="framework"
78 continuous="true" />
79
Neal Nguyenadce5662010-01-14 14:13:37 -080080<test name="frameworks-telephony"
Jake Hambye8d40782012-07-19 12:31:30 -070081 build_path="frameworks/opt/telephony/tests/telephonytests"
Neal Nguyenadce5662010-01-14 14:13:37 -080082 package="com.android.frameworks.telephonytests"
Naveen Kalla2ab93902016-07-18 13:38:08 -070083 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyenadce5662010-01-14 14:13:37 -080084 coverage_target="framework"
85 continuous="true" />
86
Lorenzo Colittie02265e2016-02-19 14:28:49 +090087<test name="frameworks-util"
88 build_path="frameworks/base/core/tests/utiltests"
89 package="com.android.frameworks.utiltests"
90 runner="android.support.test.runner.AndroidJUnitRunner"
91 continuous="true" />
92
Mitchell Wills93178d72015-12-02 17:53:55 -080093<test name="frameworks-wifi"
94 build_path="frameworks/opt/net/wifi/tests/wifitests"
95 package="com.android.server.wifi.test"
96 runner="android.support.test.runner.AndroidJUnitRunner"
97 coverage_target="framework"
98 continuous="true" />
99
Brett Chabot0145eaf2010-02-18 18:55:11 -0800100<test name="frameworks-testrunner"
Brett Chabot786f4db2010-02-20 20:07:38 -0800101 build_path="frameworks/base/test-runner"
Brett Chabot0145eaf2010-02-18 18:55:11 -0800102 package="com.android.frameworks.testrunner.tests"
Brett Chabot786f4db2010-02-20 20:07:38 -0800103 coverage_target="android.test.runner"
Brett Chabot0145eaf2010-02-18 18:55:11 -0800104 continuous="true" />
105
Neal Nguyen04bcaad2010-01-25 15:33:21 -0800106<test name="frameworks-vpn"
107 build_path="frameworks/base/vpn/tests/vpntests"
108 package="com.android.frameworks.vpntests"
109 coverage_target="framework"
110 continuous="true" />
111
Jeff Sharkey39ffbcc2013-05-30 14:27:32 -0700112<test name="frameworks-support"
113 build_path="frameworks/support/tests"
114 package="android.support.tests"
Jeff Sharkey01ae4532013-03-07 21:21:13 -0800115 continuous="true" />
116
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800117<test name="core"
118 build_path="frameworks/base/tests/CoreTests"
119 package="android.core"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800120 coverage_target="framework"
121 continuous="true" />
122
Chung-yih Wang84dcb452009-09-29 11:27:11 +0800123<test name="keystore-unit"
124 build_path="frameworks/base/keystore/tests"
125 package="android.security.tests"
Chung-yih Wang84dcb452009-09-29 11:27:11 +0800126 coverage_target="framework"
127 continuous="true" />
128
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700129<test name="imf"
130 build_path="frameworks/base/tests/ImfTest"
131 package="com.android.imftest.tests"
132 coverage_target="framework"
133 continuous="true" />
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800134
Brett Chabot2e1ac5d2009-06-15 10:46:49 -0700135<test name="framework-permission"
136 build_path="frameworks/base/tests/permission"
137 package="com.android.framework.permission.tests"
138 runner="android.test.InstrumentationTestRunner"
139 coverage_target="framework"
Brett Chabot8ccda762009-06-17 10:56:52 -0700140 continuous="true" />
Brett Chabot2e1ac5d2009-06-15 10:46:49 -0700141
Brett Chabot8c63b972010-04-05 12:19:17 -0700142<test name="android-common"
Dan Egnore970b3d2009-11-18 12:05:35 -0800143 build_path="frameworks/base/common/tests"
Brett Chabotf692a042010-04-02 08:50:02 -0700144 package="com.android.common.tests"
145 coverage_target="framework"
146 continuous="true" />
Dan Egnore970b3d2009-11-18 12:05:35 -0800147
Michal Karpinski2859eb92017-06-19 12:58:59 +0100148<test name="android-common-ex"
149 build_path="frameworks/ex/common/tests"
150 package="com.android.common.tests"
151 coverage_target="framework"
152 continuous="true" />
153
Hugo Hudson35cf07a2011-07-26 00:17:05 +0100154<test name="ex-variablespeed"
155 build_path="frameworks/ex/variablespeed/tests"
156 package="com.android.ex.variablespeed.tests"
157 coverage_target="framework"
158 continuous="true"
159 description="Framework variable speed audio tests" />
160
Jeff Brown6ec6d982012-04-06 14:50:23 -0700161<test-native name="libandroidfw"
162 build_path="frameworks/base/libs/androidfw/tests"
163 description="Framework libandroidfw unit tests." />
Jeff Brownec5b11b2010-06-13 20:09:33 -0700164
Jeff Brown55ecde52011-01-02 21:34:53 -0800165<test-native name="libinput"
Jeff Brown1190c0f2013-07-01 19:27:30 -0700166 build_path="frameworks/native/libs/input/tests"
Jeff Brown55ecde52011-01-02 21:34:53 -0800167 description="Framework libinput unit tests." />
168
Jeff Brown1190c0f2013-07-01 19:27:30 -0700169<test-native name="libinputservice"
170 build_path="frameworks/base/services/input/tests"
171 description="Framework libinputservice unit tests." />
172
Jeff Sharkey2753baa2012-02-14 17:30:01 -0800173<test name="volley"
174 build_path="frameworks/support/volley/tests"
175 package="com.android.volley.tests"
176 continuous="true" />
177
Chad Brubakerec4080c2016-08-22 12:05:15 -0700178<test name="networksecurityconfig"
179 build_path="frameworks/base/tests/NetworkSecurityConfigTest"
180 package="android.security.net.config"
181 coverage_target="framework"
182 description="Android network security config tests." />
183
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700184<!-- end of framework tests -->
185
186<!-- media framework tests -->
187<test name="media"
188 build_path="frameworks/base/media/tests/MediaFrameworkTest"
189 package="com.android.mediaframeworktest"
190 runner=".MediaFrameworkTestRunner"
191 coverage_target="framework"
192 continuous="true" />
193
194<test name="mediaapitest"
195 build_path="frameworks/base/media/tests/MediaFrameworkTest"
196 package="com.android.mediaframeworktest"
197 class="com.android.mediaframeworktest.functional.MediaPlayerApiTest"
198 runner=".MediaFrameworkTestRunner"
199 coverage_target="framework" />
200
201<test name="mediarecordertest"
202 build_path="frameworks/base/media/tests/MediaFrameworkTest"
203 package="com.android.mediaframeworktest"
204 class="com.android.mediaframeworktest.functional.MediaRecorderTest"
205 runner=".MediaFrameworkTestRunner"
206 coverage_target="framework" />
207
208<test name="mediastresstest"
209 build_path="frameworks/base/media/tests/MediaFrameworkTest"
210 package="com.android.mediaframeworktest"
211 runner=".MediaRecorderStressTestRunner"
212 coverage_target="framework" />
213
214<test name="mediamemorystress"
215 build_path="frameworks/base/media/tests/MediaFrameworkTest"
216 package="com.android.mediaframeworktest"
217 runner=".MediaFrameworkPerfTestRunner"
218 coverage_target="framework" />
219
220<test name="mediaunit"
221 build_path="frameworks/base/media/tests/MediaFrameworkTest"
222 package="com.android.mediaframeworktest"
223 runner=".MediaFrameworkUnitTestRunner"
224 coverage_target="framework" />
225
Igor Murashkin9fa45c02013-06-03 11:33:03 -0700226<test name="mediaintegrationtest"
227 build_path="frameworks/base/media/tests/MediaFrameworkTest"
228 package="com.android.mediaframeworktest"
229 runner=".MediaFrameworkIntegrationTestRunner"
230 coverage_target="framework" />
231
Yu Shan Emily Laub152b932013-04-12 17:27:15 -0700232<test-native name="camera-client-native"
233 build_path="frameworks/av/camera/tests/"
234 description="Camera client native tests." />
235
236<test-native name="camera-hal2-native"
237 build_path="hardware/libhardware/tests/camera2"
238 description="Camera hal2 native tests." />
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700239<!-- end of media framework tests -->
240
241<!-- targeted framework tests -->
242<test name="account"
243 build_path="frameworks/base/core/tests/coretests"
244 package="com.android.frameworks.coretests"
245 class="android.accounts.AccountManagerServiceTest"
246 coverage_target="framework" />
247
248<test name="smoke"
249 build_path="frameworks/base/tests/SmokeTest"
250 package="com.android.smoketest.tests"
251 coverage_target="framework"
252 continuous="true" />
253
254<test name="launchperf"
255 build_path="development/apps/launchperf"
256 package="com.android.launchperf"
257 runner=".SimpleActivityLaunchPerformance"
258 coverage_target="framework" />
259
260<test name="contentprovideroperation"
261 build_path="frameworks/base/core/tests/coretests"
262 package="com.android.frameworks.coretests"
263 class="android.content.ContentProviderOperationTest"
264 coverage_target="framework" />
265
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800266<!-- selected app tests -->
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700267<test name="apidemos"
268 build_path="development/samples/ApiDemos"
269 package="com.example.android.apis.tests" />
270
Ajay Panicker5d1f72e2016-10-21 12:15:04 -0700271<test name="bluetooth"
Jack He3b59d2f2017-11-07 21:58:43 -0800272 build_path="packages/apps/Bluetooth/tests/unit"
Ajay Panicker5d1f72e2016-10-21 12:15:04 -0700273 package="com.android.bluetooth.tests"
274 runner="android.support.test.runner.AndroidJUnitRunner"
275 continuous="true" />
276
Guang Zhucf02f242010-06-21 16:55:00 -0700277<test name="calculator"
278 build_path="packages/apps/Calculator"
279 package="com.android.calculator2.tests"
Guang Zhub7d67e62010-12-06 14:09:11 -0800280 coverage_target="Calculator"
281 continuous="true" />
Guang Zhucf02f242010-06-21 16:55:00 -0700282
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800283<test name="calendar"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700284 build_path="packages/apps/Calendar"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800285 package="com.android.calendar.tests"
286 coverage_target="Calendar"
287 continuous="true" />
288
289<test name="calprov"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700290 build_path="packages/providers/CalendarProvider"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800291 package="com.android.providers.calendar.tests"
Swarna Kumar8aca5b82009-07-30 15:03:25 -0700292 coverage_target="CalendarProvider"
293 continuous="true" />
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800294
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800295<test name="camera-functional"
Jason Noguchib7076982012-02-16 18:41:56 -0800296 build_path="packages/apps/Camera"
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800297 package="com.google.android.camera.tests"
298 runner="com.android.camera.CameraTestRunner"
Jason Noguchib7076982012-02-16 18:41:56 -0800299 coverage_target="Camera"
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800300 description="Camera functional test"
Jason Noguchib7076982012-02-16 18:41:56 -0800301 continuous="true" />
302
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800303<test name="contactsprov"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700304 build_path="packages/providers/ContactsProvider"
Omari Stephensa3410462009-09-02 13:01:11 -0700305 package="com.android.providers.contacts.tests"
Omari Stephens17a9df52009-09-29 14:16:07 -0700306 coverage_target="ContactsProvider"
307 continuous="true" />
Omari Stephensa3410462009-09-02 13:01:11 -0700308
Nicolas Cataniaf8f452c2009-09-25 16:30:09 -0700309<test name="contacts"
310 build_path="packages/apps/Contacts"
311 package="com.android.contacts.tests"
312 runner="android.test.InstrumentationTestRunner"
313 coverage_target="Contacts"
Omari Stephens17a9df52009-09-29 14:16:07 -0700314 description="Tests for the Contacts app."
315 continuous="true" />
Nicolas Cataniaf8f452c2009-09-25 16:30:09 -0700316
Brett Chabotcf87c982009-11-12 11:47:16 -0800317<test name="contacts-launch"
318 build_path="packages/apps/Contacts"
319 package="com.android.contacts.tests"
320 runner="com.android.contacts.ContactsLaunchPerformance"
321 description="Launch performance for Contacts." />
322
Santos Cordonddd7ea42013-03-19 12:08:05 -0700323<test name="dialer"
324 build_path="packages/apps/Dialer"
325 package="com.android.dialer.tests"
326 runner="android.test.InstrumentationTestRunner"
327 coverage_target="Dialer"
328 description="Tests for the Dialer app."
329 continuous="true" />
330
Victor Chang126f40c2016-08-18 19:55:19 +0100331<test name="managed-provisioning"
332 build_path="packages/apps/ManagedProvisioning/tests"
333 package="com.android.managedprovisioning.tests"
334 runner="com.android.managedprovisioning.TestInstrumentationRunner"
335 coverage_target="ManagedProvisioning"
336 description="Tests for the ManagedProvisioning app."
337 continuous="true" />
338
Jeff Sharkey74767752011-10-12 13:45:25 -0700339<test name="downloadprovider"
340 build_path="packages/providers/DownloadProvider/tests"
341 package="com.android.providers.downloads.tests"
342 coverage_target="DownloadProvider"
343 continuous="true" />
344
Brett Chabot5de234e2009-06-15 13:04:58 -0700345<test name="downloadprovider-permission"
346 build_path="packages/providers/DownloadProvider/tests/permission"
347 package="com.android.providers.downloads.permission.tests"
Brett Chabot8ccda762009-06-17 10:56:52 -0700348 coverage_target="DownloadProvider"
349 continuous="true" />
Brett Chabot5de234e2009-06-15 13:04:58 -0700350
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800351<test name="email"
352 build_path="packages/apps/Email"
353 package="com.android.email.tests"
354 coverage_target="Email"
355 continuous="true" />
356
357<test name="emailsmall"
358 build_path="packages/apps/Email"
359 package="com.android.email.tests"
360 class="com.android.email.SmallTests"
361 coverage_target="Email" />
362
Marc Blankb1bc3d82011-02-17 12:47:10 -0800363<test name="exchange"
364 build_path="packages/apps/Exchange"
365 package="com.android.exchange.tests"
366 coverage_target="Exchange"
367 continuous="true" />
368
Brett Chabota3a8aeb2009-03-31 14:51:13 -0700369<test name="musicplayer"
370 build_path="packages/apps/Music"
371 package="com.android.music.tests"
372 runner=".MusicPlayerFunctionalTestRunner"
Yu Shan Emily Laud17eb0b2009-04-09 13:55:00 -0700373 coverage_target="Music" />
Brett Chabota3a8aeb2009-03-31 14:51:13 -0700374
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800375<test name="mms"
376 build_path="packages/apps/Mms"
377 package="com.android.mms.tests"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800378 coverage_target="Mms" />
379
Nicolas Catania6f0366f2009-12-07 13:03:13 -0800380<!-- Unit tests for the phone application. -->
381<test name="phone-unit"
Santos Cordon70939ca2013-12-12 18:39:22 -0800382 build_path="packages/services/Telephony"
Nicolas Catania6f0366f2009-12-07 13:03:13 -0800383 package="com.android.phone.tests"
384 continuous="true"
385 coverage_target="Phone" />
386
Jonathan Basseri98108542015-07-09 11:32:51 -0700387<test name="carrierconfig-unit"
388 build_path="packages/apps/CarrierConfig"
389 package="com.android.carrierconfig.tests"
390 continuous="true"
391 coverage_target="Phone"
392 description="Tests for default carrier config app" />
393
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700394<test name="telecom-unit"
Santos Cordon70939ca2013-12-12 18:39:22 -0800395 build_path="packages/services/Telecomm"
Tyler Gunn2e4aa792014-09-12 09:19:08 -0700396 package="com.android.server.telecom.tests"
Santos Cordon70939ca2013-12-12 18:39:22 -0800397 continuous="true"
398 coverage_target="Phone" />
399
Bryan Mawhinneyd75939d2010-02-05 17:17:13 +0000400<test name="quicksearchbox"
401 build_path="packages/apps/QuickSearchBox"
402 package="com.android.quicksearchbox.tests"
Brett Chabot79a612b2010-04-05 16:37:59 -0700403 coverage_target="QuickSearchBox" />
Bryan Mawhinneyd75939d2010-02-05 17:17:13 +0000404
Brett Chaboteec50422011-08-17 15:40:03 -0700405<test name="systemui"
Geoffrey Pitsch251ae642016-08-18 11:36:37 -0400406 build_path="frameworks/base/packages/SystemUI/tests"
Brett Chaboteec50422011-08-17 15:40:03 -0700407 package="com.android.systemui.tests"
408 coverage_target="SystemUI"
Jason Monkf5c03e62017-06-27 13:13:14 -0400409 runner="android.testing.TestableInstrumentation"
Brett Chaboteec50422011-08-17 15:40:03 -0700410 continuous="true"
411 description="SystemUI tests" />
412
Jorim Jaggifd16ae92016-10-11 14:32:25 +0200413<test name="systemui-jank"
414 build_path="platform_testing/tests/jank/UbSystemUiJankTests"
415 package="android.platform.systemui.tests.jank"
Jorim Jaggi13cd6792018-01-24 00:55:13 +0100416 runner="android.support.test.runner.AndroidJUnitRunner "
Jorim Jaggifd16ae92016-10-11 14:32:25 +0200417 continuous="true"
418 description="SystemUI jank tests" />
419
Geoffrey Pitsch29938572016-11-07 11:20:25 -0500420<test name="systemui-notification"
Jason Monkab190942017-12-06 12:52:41 -0500421 build_path="frameworks/base/services/tests/uiservicestests"
422 package="com.android.frameworks.tests.uiservices"
Jason Monkf5c03e62017-06-27 13:13:14 -0400423 runner="android.testing.TestableInstrumentation"
Geoffrey Pitsch29938572016-11-07 11:20:25 -0500424 continuous="true"
Jason Monkab190942017-12-06 12:52:41 -0500425 description="SystemUI Services tests" />
Geoffrey Pitsch29938572016-11-07 11:20:25 -0500426
Chris Wren4278dfb2016-10-25 17:09:39 -0400427<test name="systemui-functional-notification"
428 build_path="platform_testing/tests/functional/notificationtests"
429 package="com.android.notification.functional"
430 runner="android.support.test.runner.AndroidJUnitRunner"
431 continuous="true"
432 description="SystemUI functional notification tests" />
433
Jorim Jaggia03dff52016-10-11 16:27:00 +0200434<test name="apptransition-perf"
435 build_path="platform_testing/tests/perf/PerfTransitionTest"
436 package="com.android.apptransition.tests"
437 runner="android.support.test.runner.AndroidJUnitRunner"
438 continuous="true"
439 description="App transition latency and other latency tests" />
440
Jeff Sharkey34c8fae2013-09-06 13:56:45 -0700441<test name="documentsui"
442 build_path="frameworks/base/packages/DocumentsUI/tests"
443 package="com.android.documentsui.tests"
444 coverage_target="DocumentsUI"
445 continuous="true"
446 description="DocumentsUI tests" />
447
Niko Catania24728662009-04-02 23:33:53 -0700448<!-- native tests -->
Nicolas Catania18d7a4e2009-06-15 09:28:06 -0700449
450<!-- Bionic C++ -->
Niko Catania24728662009-04-02 23:33:53 -0700451<test-native name="libstdcpp"
452 build_path="system/extras/tests/bionic/libstdc++"
Niko Catania55ebbc42009-04-03 14:13:05 -0700453 description="Bionic libstdc++."
Brett Chabot764d3fa2009-06-25 17:57:31 -0700454 extra_build_args="BIONIC_TESTS=1" />
Niko Catania24728662009-04-02 23:33:53 -0700455
Wei-Ta Chenb515fb12009-05-28 13:42:14 -0700456<test-native name="libskia"
457 build_path="external/skia/tests"
458 description="Skia tests." />
459
Nicolas Catania13a2fcf2010-02-10 22:40:39 -0800460<!-- Google Test -->
Nicolas Cataniaff096c12009-05-01 11:55:36 -0700461<test-native name="gtest"
462 build_path="external/gtest"
463 description="Google test."
Brett Chabot764d3fa2009-06-25 17:57:31 -0700464 extra_build_args="GTEST_TESTS=1" />
Nicolas Catania13a2fcf2010-02-10 22:40:39 -0800465
Lorenzo Colitti791bef52014-02-22 01:56:46 +0900466<!-- clatd -->
467<test-native name="clatd"
468 build_path="external/android-clat"
469 description="clatd unit tests." />
470
Nicolas Catania8595c942010-04-09 10:26:13 -0700471<!-- Libjingle -->
472<test-native name="libjingle"
473 build_path="vendor/google/libraries/libjingle"
474 description="Libjingle."
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700475 full_make="true"
Nicolas Catania8595c942010-04-09 10:26:13 -0700476 extra_build_args="LIBJINGLE_TESTS=1" />
477
Brett Chabot764d3fa2009-06-25 17:57:31 -0700478<!-- host java tests -->
Brett Chabotc5ad47c2010-02-17 11:22:19 -0800479<test-host name="frameworks-core-host"
480 build_path="frameworks/base/core/tests/hosttests"
481 class="android.content.pm.PackageManagerHostTests"
482 jar_name="FrameworkCoreHostTests.jar" />
483
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800484</test-definitions>