• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2016 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15instrumentation_tests := \
16    HelloWorldTests \
17    BluetoothInstrumentationTests \
18    crashcollector \
19    LongevityPlatformLibTests \
20    ManagedProvisioningTests \
21    FrameworksCoreTests \
22    FrameworksMockingCoreTests \
23    BinderProxyCountingTestApp \
24    BinderProxyCountingTestService \
25    FrameworksNetTests \
26    FrameworksUiServicesTests \
27    BstatsTestApp \
28    ConnTestApp \
29    FrameworksServicesTests \
30    FrameworksMockingServicesTests \
31    WmTests \
32    JobTestApp \
33    SuspendTestApp \
34    FrameworksUtilTests \
35    MtpDocumentsProviderTests \
36    MtpTests \
37    DocumentsUITests \
38    ShellTests \
39    SystemUITests \
40    TestablesTests \
41    FrameworksWifiApiTests \
42    FrameworksWifiTests \
43    FrameworksTelephonyTests \
44    ContactsProviderTests \
45    ContactsProviderTests2 \
46    SettingsUnitTests \
47    TelecomUnitTests \
48    TraceurUiTests \
49    AndroidVCardTests \
50    PermissionFunctionalTests \
51    BlockedNumberProviderTest \
52    DownloadAppFunctionalTests \
53    NotificationFunctionalTests \
54    DynamicCodeLoggerIntegrationTests \
55    UsbTests \
56    DownloadProviderTests \
57    EmergencyInfoUnitTests \
58    CalendarProviderTests \
59    SettingsLibTests \
60    RSTest \
61    PrintSpoolerOutOfProcessTests \
62    CellBroadcastReceiverUnitTests \
63    TelephonyProviderTests \
64    CarrierConfigTests \
65    TeleServiceTests \
66    PresencePollingTests \
67    SettingsProviderTest \
68    FrameworksLocationTests \
69    FrameworksPrivacyLibraryTests \
70    SettingsUITests \
71    ExtServicesUnitTests\
72    NexusLauncherOutOfProcTests\
73    NexusLauncherDebug\
74    NexusLauncherTests\
75    FrameworksNetSmokeTests\
76
77
78# Android Things specific tests
79ifeq ($(PRODUCT_IOT),true)
80
81instrumentation_tests += \
82    AndroidThingsTests \
83    BluetoothControlServiceTests \
84    NetworkingServicesUnitTests \
85    ThingsIntegrationTests \
86    WifiSetupUnitTests
87
88endif  # PRODUCT_IOT == true
89
90# Storage Manager may not exist on device
91ifneq ($(filter StorageManager, $(PRODUCT_PACKAGES)),)
92
93instrumentation_tests += StorageManagerUnitTests
94
95endif
96