blob: 8fdf5efe7c17b530f3d4d9ff814257f68831b084 [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"
36 coverage_target="framework"
37 continuous="true" />
38
Lorenzo Colitti54398312016-10-28 17:13:20 +090039<test name="frameworks-net"
40 build_path="frameworks/base/tests/net"
41 package="com.android.frameworks.tests.net"
42 runner="android.support.test.runner.AndroidJUnitRunner"
43 coverage_target="framework"
44 continuous = "true" />
45
Xia Wang991ffd72010-06-29 14:59:26 -070046<!-- will not run in the continuous test as it needs both Wifi & 3G -->
47<test name="frameworks-connectivity"
48 build_path="frameworks/base/core/tests/ConnectivityManagerTest/"
49 package="com.android.connectivitymanagertest"
50 runner=".ConnectivityManagerUnitTestRunner"
51 coverage_target="framework" />
52
Neal Nguyen04bcaad2010-01-25 15:33:21 -080053<test name="frameworks-graphics"
54 build_path="frameworks/base/graphics/tests/graphicstests"
55 package="com.android.frameworks.graphicstests"
56 coverage_target="framework"
57 continuous="true" />
58
Neal Nguyenadce5662010-01-14 14:13:37 -080059<test name="frameworks-location"
60 build_path="frameworks/base/location/tests/locationtests"
61 package="com.android.frameworks.locationtests"
62 coverage_target="framework"
63 continuous="true" />
64
Neal Nguyen04bcaad2010-01-25 15:33:21 -080065<test name="frameworks-sax"
66 build_path="frameworks/base/sax/tests/saxtests"
67 package="com.android.frameworks.saxtests"
68 coverage_target="framework"
69 continuous="true" />
70
Neal Nguyend538def2010-02-02 17:12:22 -080071<test name="frameworks-services"
72 build_path="frameworks/base/services/tests/servicestests"
73 package="com.android.frameworks.servicestests"
Christopher Wiley00d6fa72016-05-18 12:26:02 -070074 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyend538def2010-02-02 17:12:22 -080075 coverage_target="framework"
76 continuous="true" />
77
Neal Nguyenadce5662010-01-14 14:13:37 -080078<test name="frameworks-telephony"
Jake Hambye8d40782012-07-19 12:31:30 -070079 build_path="frameworks/opt/telephony/tests/telephonytests"
Neal Nguyenadce5662010-01-14 14:13:37 -080080 package="com.android.frameworks.telephonytests"
Naveen Kalla2ab93902016-07-18 13:38:08 -070081 runner="android.support.test.runner.AndroidJUnitRunner"
Neal Nguyenadce5662010-01-14 14:13:37 -080082 coverage_target="framework"
83 continuous="true" />
84
Lorenzo Colittie02265e2016-02-19 14:28:49 +090085<test name="frameworks-util"
86 build_path="frameworks/base/core/tests/utiltests"
87 package="com.android.frameworks.utiltests"
88 runner="android.support.test.runner.AndroidJUnitRunner"
89 continuous="true" />
90
Mitchell Wills93178d72015-12-02 17:53:55 -080091<test name="frameworks-wifi"
92 build_path="frameworks/opt/net/wifi/tests/wifitests"
93 package="com.android.server.wifi.test"
94 runner="android.support.test.runner.AndroidJUnitRunner"
95 coverage_target="framework"
96 continuous="true" />
97
Brett Chabot0145eaf2010-02-18 18:55:11 -080098<test name="frameworks-testrunner"
Brett Chabot786f4db2010-02-20 20:07:38 -080099 build_path="frameworks/base/test-runner"
Brett Chabot0145eaf2010-02-18 18:55:11 -0800100 package="com.android.frameworks.testrunner.tests"
Brett Chabot786f4db2010-02-20 20:07:38 -0800101 coverage_target="android.test.runner"
Brett Chabot0145eaf2010-02-18 18:55:11 -0800102 continuous="true" />
103
Neal Nguyen04bcaad2010-01-25 15:33:21 -0800104<test name="frameworks-vpn"
105 build_path="frameworks/base/vpn/tests/vpntests"
106 package="com.android.frameworks.vpntests"
107 coverage_target="framework"
108 continuous="true" />
109
Jeff Sharkey39ffbcc2013-05-30 14:27:32 -0700110<test name="frameworks-support"
111 build_path="frameworks/support/tests"
112 package="android.support.tests"
Jeff Sharkey01ae4532013-03-07 21:21:13 -0800113 continuous="true" />
114
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800115<test name="core"
116 build_path="frameworks/base/tests/CoreTests"
117 package="android.core"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800118 coverage_target="framework"
119 continuous="true" />
120
Chung-yih Wang84dcb452009-09-29 11:27:11 +0800121<test name="keystore-unit"
122 build_path="frameworks/base/keystore/tests"
123 package="android.security.tests"
Chung-yih Wang84dcb452009-09-29 11:27:11 +0800124 coverage_target="framework"
125 continuous="true" />
126
The Android Open Source Project6ffae012009-03-18 17:39:43 -0700127<test name="imf"
128 build_path="frameworks/base/tests/ImfTest"
129 package="com.android.imftest.tests"
130 coverage_target="framework"
131 continuous="true" />
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800132
Brett Chabot2e1ac5d2009-06-15 10:46:49 -0700133<test name="framework-permission"
134 build_path="frameworks/base/tests/permission"
135 package="com.android.framework.permission.tests"
136 runner="android.test.InstrumentationTestRunner"
137 coverage_target="framework"
Brett Chabot8ccda762009-06-17 10:56:52 -0700138 continuous="true" />
Brett Chabot2e1ac5d2009-06-15 10:46:49 -0700139
Brett Chabot8c63b972010-04-05 12:19:17 -0700140<test name="android-common"
Dan Egnore970b3d2009-11-18 12:05:35 -0800141 build_path="frameworks/base/common/tests"
Brett Chabotf692a042010-04-02 08:50:02 -0700142 package="com.android.common.tests"
143 coverage_target="framework"
144 continuous="true" />
Dan Egnore970b3d2009-11-18 12:05:35 -0800145
Michal Karpinski2859eb92017-06-19 12:58:59 +0100146<test name="android-common-ex"
147 build_path="frameworks/ex/common/tests"
148 package="com.android.common.tests"
149 coverage_target="framework"
150 continuous="true" />
151
Hugo Hudson35cf07a2011-07-26 00:17:05 +0100152<test name="ex-variablespeed"
153 build_path="frameworks/ex/variablespeed/tests"
154 package="com.android.ex.variablespeed.tests"
155 coverage_target="framework"
156 continuous="true"
157 description="Framework variable speed audio tests" />
158
Jeff Brown6ec6d982012-04-06 14:50:23 -0700159<test-native name="libandroidfw"
160 build_path="frameworks/base/libs/androidfw/tests"
161 description="Framework libandroidfw unit tests." />
Jeff Brownec5b11b2010-06-13 20:09:33 -0700162
Jeff Brown55ecde52011-01-02 21:34:53 -0800163<test-native name="libinput"
Jeff Brown1190c0f2013-07-01 19:27:30 -0700164 build_path="frameworks/native/libs/input/tests"
Jeff Brown55ecde52011-01-02 21:34:53 -0800165 description="Framework libinput unit tests." />
166
Jeff Brown1190c0f2013-07-01 19:27:30 -0700167<test-native name="libinputservice"
168 build_path="frameworks/base/services/input/tests"
169 description="Framework libinputservice unit tests." />
170
Jeff Sharkey2753baa2012-02-14 17:30:01 -0800171<test name="volley"
172 build_path="frameworks/support/volley/tests"
173 package="com.android.volley.tests"
174 continuous="true" />
175
Chad Brubakerec4080c2016-08-22 12:05:15 -0700176<test name="networksecurityconfig"
177 build_path="frameworks/base/tests/NetworkSecurityConfigTest"
178 package="android.security.net.config"
179 coverage_target="framework"
180 description="Android network security config tests." />
181
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700182<!-- end of framework tests -->
183
184<!-- media framework tests -->
185<test name="media"
186 build_path="frameworks/base/media/tests/MediaFrameworkTest"
187 package="com.android.mediaframeworktest"
188 runner=".MediaFrameworkTestRunner"
189 coverage_target="framework"
190 continuous="true" />
191
192<test name="mediaapitest"
193 build_path="frameworks/base/media/tests/MediaFrameworkTest"
194 package="com.android.mediaframeworktest"
195 class="com.android.mediaframeworktest.functional.MediaPlayerApiTest"
196 runner=".MediaFrameworkTestRunner"
197 coverage_target="framework" />
198
199<test name="mediarecordertest"
200 build_path="frameworks/base/media/tests/MediaFrameworkTest"
201 package="com.android.mediaframeworktest"
202 class="com.android.mediaframeworktest.functional.MediaRecorderTest"
203 runner=".MediaFrameworkTestRunner"
204 coverage_target="framework" />
205
206<test name="mediastresstest"
207 build_path="frameworks/base/media/tests/MediaFrameworkTest"
208 package="com.android.mediaframeworktest"
209 runner=".MediaRecorderStressTestRunner"
210 coverage_target="framework" />
211
212<test name="mediamemorystress"
213 build_path="frameworks/base/media/tests/MediaFrameworkTest"
214 package="com.android.mediaframeworktest"
215 runner=".MediaFrameworkPerfTestRunner"
216 coverage_target="framework" />
217
218<test name="mediaunit"
219 build_path="frameworks/base/media/tests/MediaFrameworkTest"
220 package="com.android.mediaframeworktest"
221 runner=".MediaFrameworkUnitTestRunner"
222 coverage_target="framework" />
223
Igor Murashkin9fa45c02013-06-03 11:33:03 -0700224<test name="mediaintegrationtest"
225 build_path="frameworks/base/media/tests/MediaFrameworkTest"
226 package="com.android.mediaframeworktest"
227 runner=".MediaFrameworkIntegrationTestRunner"
228 coverage_target="framework" />
229
Yu Shan Emily Laub152b932013-04-12 17:27:15 -0700230<test-native name="camera-client-native"
231 build_path="frameworks/av/camera/tests/"
232 description="Camera client native tests." />
233
234<test-native name="camera-hal2-native"
235 build_path="hardware/libhardware/tests/camera2"
236 description="Camera hal2 native tests." />
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700237<!-- end of media framework tests -->
238
239<!-- targeted framework tests -->
240<test name="account"
241 build_path="frameworks/base/core/tests/coretests"
242 package="com.android.frameworks.coretests"
243 class="android.accounts.AccountManagerServiceTest"
244 coverage_target="framework" />
245
246<test name="smoke"
247 build_path="frameworks/base/tests/SmokeTest"
248 package="com.android.smoketest.tests"
249 coverage_target="framework"
250 continuous="true" />
251
252<test name="launchperf"
253 build_path="development/apps/launchperf"
254 package="com.android.launchperf"
255 runner=".SimpleActivityLaunchPerformance"
256 coverage_target="framework" />
257
258<test name="contentprovideroperation"
259 build_path="frameworks/base/core/tests/coretests"
260 package="com.android.frameworks.coretests"
261 class="android.content.ContentProviderOperationTest"
262 coverage_target="framework" />
263
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800264<!-- selected app tests -->
Brett Chabota6f3b0a2010-04-01 18:38:31 -0700265<test name="apidemos"
266 build_path="development/samples/ApiDemos"
267 package="com.example.android.apis.tests" />
268
Ajay Panicker5d1f72e2016-10-21 12:15:04 -0700269<test name="bluetooth"
270 build_path="packages/apps/Bluetooth/tests"
271 package="com.android.bluetooth.tests"
272 runner="android.support.test.runner.AndroidJUnitRunner"
273 continuous="true" />
274
Guang Zhucf02f242010-06-21 16:55:00 -0700275<test name="calculator"
276 build_path="packages/apps/Calculator"
277 package="com.android.calculator2.tests"
Guang Zhub7d67e62010-12-06 14:09:11 -0800278 coverage_target="Calculator"
279 continuous="true" />
Guang Zhucf02f242010-06-21 16:55:00 -0700280
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800281<test name="calendar"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700282 build_path="packages/apps/Calendar"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800283 package="com.android.calendar.tests"
284 coverage_target="Calendar"
285 continuous="true" />
286
287<test name="calprov"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700288 build_path="packages/providers/CalendarProvider"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800289 package="com.android.providers.calendar.tests"
Swarna Kumar8aca5b82009-07-30 15:03:25 -0700290 coverage_target="CalendarProvider"
291 continuous="true" />
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800292
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800293<test name="camera-functional"
Jason Noguchib7076982012-02-16 18:41:56 -0800294 build_path="packages/apps/Camera"
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800295 package="com.google.android.camera.tests"
296 runner="com.android.camera.CameraTestRunner"
Jason Noguchib7076982012-02-16 18:41:56 -0800297 coverage_target="Camera"
Yu Shan Emily Lau9ba4eff2012-02-23 15:39:52 -0800298 description="Camera functional test"
Jason Noguchib7076982012-02-16 18:41:56 -0800299 continuous="true" />
300
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800301<test name="contactsprov"
Swarna Kumar3bf043f2010-03-22 15:38:22 -0700302 build_path="packages/providers/ContactsProvider"
Omari Stephensa3410462009-09-02 13:01:11 -0700303 package="com.android.providers.contacts.tests"
Omari Stephens17a9df52009-09-29 14:16:07 -0700304 coverage_target="ContactsProvider"
305 continuous="true" />
Omari Stephensa3410462009-09-02 13:01:11 -0700306
Nicolas Cataniaf8f452c2009-09-25 16:30:09 -0700307<test name="contacts"
308 build_path="packages/apps/Contacts"
309 package="com.android.contacts.tests"
310 runner="android.test.InstrumentationTestRunner"
311 coverage_target="Contacts"
Omari Stephens17a9df52009-09-29 14:16:07 -0700312 description="Tests for the Contacts app."
313 continuous="true" />
Nicolas Cataniaf8f452c2009-09-25 16:30:09 -0700314
Brett Chabotcf87c982009-11-12 11:47:16 -0800315<test name="contacts-launch"
316 build_path="packages/apps/Contacts"
317 package="com.android.contacts.tests"
318 runner="com.android.contacts.ContactsLaunchPerformance"
319 description="Launch performance for Contacts." />
320
Santos Cordonddd7ea42013-03-19 12:08:05 -0700321<test name="dialer"
322 build_path="packages/apps/Dialer"
323 package="com.android.dialer.tests"
324 runner="android.test.InstrumentationTestRunner"
325 coverage_target="Dialer"
326 description="Tests for the Dialer app."
327 continuous="true" />
328
Victor Chang126f40c2016-08-18 19:55:19 +0100329<test name="managed-provisioning"
330 build_path="packages/apps/ManagedProvisioning/tests"
331 package="com.android.managedprovisioning.tests"
332 runner="com.android.managedprovisioning.TestInstrumentationRunner"
333 coverage_target="ManagedProvisioning"
334 description="Tests for the ManagedProvisioning app."
335 continuous="true" />
336
Jeff Sharkey74767752011-10-12 13:45:25 -0700337<test name="downloadprovider"
338 build_path="packages/providers/DownloadProvider/tests"
339 package="com.android.providers.downloads.tests"
340 coverage_target="DownloadProvider"
341 continuous="true" />
342
Brett Chabot5de234e2009-06-15 13:04:58 -0700343<test name="downloadprovider-permission"
344 build_path="packages/providers/DownloadProvider/tests/permission"
345 package="com.android.providers.downloads.permission.tests"
Brett Chabot8ccda762009-06-17 10:56:52 -0700346 coverage_target="DownloadProvider"
347 continuous="true" />
Brett Chabot5de234e2009-06-15 13:04:58 -0700348
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800349<test name="email"
350 build_path="packages/apps/Email"
351 package="com.android.email.tests"
352 coverage_target="Email"
353 continuous="true" />
354
355<test name="emailsmall"
356 build_path="packages/apps/Email"
357 package="com.android.email.tests"
358 class="com.android.email.SmallTests"
359 coverage_target="Email" />
360
Marc Blankb1bc3d82011-02-17 12:47:10 -0800361<test name="exchange"
362 build_path="packages/apps/Exchange"
363 package="com.android.exchange.tests"
364 coverage_target="Exchange"
365 continuous="true" />
366
Brett Chabota3a8aeb2009-03-31 14:51:13 -0700367<test name="musicplayer"
368 build_path="packages/apps/Music"
369 package="com.android.music.tests"
370 runner=".MusicPlayerFunctionalTestRunner"
Yu Shan Emily Laud17eb0b2009-04-09 13:55:00 -0700371 coverage_target="Music" />
Brett Chabota3a8aeb2009-03-31 14:51:13 -0700372
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800373<test name="mms"
374 build_path="packages/apps/Mms"
375 package="com.android.mms.tests"
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800376 coverage_target="Mms" />
377
Nicolas Catania6f0366f2009-12-07 13:03:13 -0800378<!-- Unit tests for the phone application. -->
379<test name="phone-unit"
Santos Cordon70939ca2013-12-12 18:39:22 -0800380 build_path="packages/services/Telephony"
Nicolas Catania6f0366f2009-12-07 13:03:13 -0800381 package="com.android.phone.tests"
382 continuous="true"
383 coverage_target="Phone" />
384
Jonathan Basseri98108542015-07-09 11:32:51 -0700385<test name="carrierconfig-unit"
386 build_path="packages/apps/CarrierConfig"
387 package="com.android.carrierconfig.tests"
388 continuous="true"
389 coverage_target="Phone"
390 description="Tests for default carrier config app" />
391
Santos Cordon4e0ad8f2015-05-21 12:25:05 -0700392<test name="telecom-unit"
Santos Cordon70939ca2013-12-12 18:39:22 -0800393 build_path="packages/services/Telecomm"
Tyler Gunn2e4aa792014-09-12 09:19:08 -0700394 package="com.android.server.telecom.tests"
Santos Cordon70939ca2013-12-12 18:39:22 -0800395 continuous="true"
396 coverage_target="Phone" />
397
Bryan Mawhinneyd75939d2010-02-05 17:17:13 +0000398<test name="quicksearchbox"
399 build_path="packages/apps/QuickSearchBox"
400 package="com.android.quicksearchbox.tests"
Brett Chabot79a612b2010-04-05 16:37:59 -0700401 coverage_target="QuickSearchBox" />
Bryan Mawhinneyd75939d2010-02-05 17:17:13 +0000402
Brett Chaboteec50422011-08-17 15:40:03 -0700403<test name="systemui"
Geoffrey Pitsch251ae642016-08-18 11:36:37 -0400404 build_path="frameworks/base/packages/SystemUI/tests"
Brett Chaboteec50422011-08-17 15:40:03 -0700405 package="com.android.systemui.tests"
406 coverage_target="SystemUI"
Jason Monkf5c03e62017-06-27 13:13:14 -0400407 runner="android.testing.TestableInstrumentation"
Brett Chaboteec50422011-08-17 15:40:03 -0700408 continuous="true"
409 description="SystemUI tests" />
410
Jorim Jaggifd16ae92016-10-11 14:32:25 +0200411<test name="systemui-jank"
412 build_path="platform_testing/tests/jank/UbSystemUiJankTests"
413 package="android.platform.systemui.tests.jank"
414 runner="android.test.InstrumentationTestRunner"
415 continuous="true"
416 description="SystemUI jank tests" />
417
Geoffrey Pitsch29938572016-11-07 11:20:25 -0500418<test name="systemui-notification"
419 build_path="frameworks/base/services/tests/notification"
420 package="com.android.frameworks.tests.notification"
Jason Monkf5c03e62017-06-27 13:13:14 -0400421 runner="android.testing.TestableInstrumentation"
Geoffrey Pitsch29938572016-11-07 11:20:25 -0500422 continuous="true"
423 description="SystemUI Notification tests" />
424
Chris Wren4278dfb2016-10-25 17:09:39 -0400425<test name="systemui-functional-notification"
426 build_path="platform_testing/tests/functional/notificationtests"
427 package="com.android.notification.functional"
428 runner="android.support.test.runner.AndroidJUnitRunner"
429 continuous="true"
430 description="SystemUI functional notification tests" />
431
Jorim Jaggia03dff52016-10-11 16:27:00 +0200432<test name="apptransition-perf"
433 build_path="platform_testing/tests/perf/PerfTransitionTest"
434 package="com.android.apptransition.tests"
435 runner="android.support.test.runner.AndroidJUnitRunner"
436 continuous="true"
437 description="App transition latency and other latency tests" />
438
Jeff Sharkey34c8fae2013-09-06 13:56:45 -0700439<test name="documentsui"
440 build_path="frameworks/base/packages/DocumentsUI/tests"
441 package="com.android.documentsui.tests"
442 coverage_target="DocumentsUI"
443 continuous="true"
444 description="DocumentsUI tests" />
445
Niko Catania24728662009-04-02 23:33:53 -0700446<!-- native tests -->
Nicolas Catania18d7a4e2009-06-15 09:28:06 -0700447
448<!-- Bionic C++ -->
Niko Catania24728662009-04-02 23:33:53 -0700449<test-native name="libstdcpp"
450 build_path="system/extras/tests/bionic/libstdc++"
Niko Catania55ebbc42009-04-03 14:13:05 -0700451 description="Bionic libstdc++."
Brett Chabot764d3fa2009-06-25 17:57:31 -0700452 extra_build_args="BIONIC_TESTS=1" />
Niko Catania24728662009-04-02 23:33:53 -0700453
Wei-Ta Chenb515fb12009-05-28 13:42:14 -0700454<test-native name="libskia"
455 build_path="external/skia/tests"
456 description="Skia tests." />
457
Nicolas Catania13a2fcf2010-02-10 22:40:39 -0800458<!-- Google Test -->
Nicolas Cataniaff096c12009-05-01 11:55:36 -0700459<test-native name="gtest"
460 build_path="external/gtest"
461 description="Google test."
Brett Chabot764d3fa2009-06-25 17:57:31 -0700462 extra_build_args="GTEST_TESTS=1" />
Nicolas Catania13a2fcf2010-02-10 22:40:39 -0800463
Lorenzo Colitti791bef52014-02-22 01:56:46 +0900464<!-- clatd -->
465<test-native name="clatd"
466 build_path="external/android-clat"
467 description="clatd unit tests." />
468
Nicolas Catania8595c942010-04-09 10:26:13 -0700469<!-- Libjingle -->
470<test-native name="libjingle"
471 build_path="vendor/google/libraries/libjingle"
472 description="Libjingle."
Brett Chabot8dc9eb82010-04-15 15:43:04 -0700473 full_make="true"
Nicolas Catania8595c942010-04-09 10:26:13 -0700474 extra_build_args="LIBJINGLE_TESTS=1" />
475
Brett Chabot764d3fa2009-06-25 17:57:31 -0700476<!-- host java tests -->
Brett Chabotc5ad47c2010-02-17 11:22:19 -0800477<test-host name="frameworks-core-host"
478 build_path="frameworks/base/core/tests/hosttests"
479 class="android.content.pm.PackageManagerHostTests"
480 jar_name="FrameworkCoreHostTests.jar" />
481
The Android Open Source Project52d4c302009-03-03 19:29:09 -0800482</test-definitions>