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 WmPerfTests \ 33 JobTestApp \ 34 SuspendTestApp \ 35 FrameworksUtilTests \ 36 MtpServiceTests \ 37 MtpTests \ 38 DocumentsUITests \ 39 ShellTests \ 40 SystemUITests \ 41 TestablesTests \ 42 FrameworksWifiApiTests \ 43 FrameworksWifiNonUpdatableApiTests \ 44 FrameworksWifiTests \ 45 FrameworksTelephonyTests \ 46 ContactsProviderTests \ 47 ContactsProviderTests2 \ 48 SettingsUnitTests \ 49 TelecomUnitTests \ 50 TraceurUiTests \ 51 AndroidVCardTests \ 52 PermissionFunctionalTests \ 53 BlockedNumberProviderTest \ 54 DownloadAppFunctionalTests \ 55 NotificationFunctionalTests \ 56 DynamicCodeLoggerIntegrationTests \ 57 UsbTests \ 58 DownloadProviderTests \ 59 EmergencyInfoUnitTests \ 60 CalendarProviderTests \ 61 SettingsLibTests \ 62 RSTest \ 63 PrintSpoolerOutOfProcessTests \ 64 CellBroadcastReceiverUnitTests \ 65 CellBroadcastServiceTests \ 66 TelephonyProviderTests \ 67 CarrierConfigTests \ 68 TeleServiceTests \ 69 PresencePollingTests \ 70 ImsCommonTests \ 71 SettingsProviderTest \ 72 FrameworksPrivacyLibraryTests \ 73 SettingsUITests \ 74 SettingsPerfTests \ 75 ExtServicesUnitTests \ 76 FrameworksNetSmokeTests \ 77 FlickerTests \ 78 FlickerTestApp \ 79 WMShellFlickerTests \ 80 WMShellFlickerTestApp \ 81 WMShellUnitTests \ 82 trace_config_detailed.textproto \ 83 perfetto_trace_processor_shell \ 84 CarDeveloperOptionsUnitTests 85 86ifneq ($(strip $(BOARD_PERFSETUP_SCRIPT)),) 87instrumentation_tests += perf-setup 88endif 89 90# Storage Manager may not exist on device 91ifneq ($(filter StorageManager, $(PRODUCT_PACKAGES)),) 92 93instrumentation_tests += StorageManagerUnitTests 94 95endif 96