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 LongevityPlatformLibTests \ 19 ManagedProvisioningTests \ 20 FrameworksCoreTests \ 21 FrameworksCoreGameManagerTests \ 22 FrameworksMockingCoreTests \ 23 BinderProxyCountingTestApp \ 24 BinderProxyCountingTestService \ 25 FrameworksNetTests \ 26 FrameworksUiServicesTests \ 27 FrameworksUiServicesNotificationTests \ 28 FrameworksUiServicesZenTests \ 29 BstatsTestApp \ 30 FrameworksServicesTests \ 31 FrameworksMockingServicesTests \ 32 WmTests \ 33 WmPerfTests \ 34 DisplayServiceTests \ 35 SuspendTestApp \ 36 FrameworksUtilTests \ 37 MtpServiceTests \ 38 MtpTests \ 39 DocumentsUITests \ 40 ShellTests \ 41 SystemUITests \ 42 TvSystemUITests \ 43 TestablesTests \ 44 FrameworksWifiApiTests \ 45 FrameworksWifiNonUpdatableApiTests \ 46 FrameworksWifiTests \ 47 FrameworksTelephonyTests \ 48 ContactsProviderTests \ 49 SettingsUnitTests \ 50 TelecomUnitTests \ 51 TraceurUiTests \ 52 AndroidVCardTests \ 53 PermissionFunctionalTests \ 54 BlockedNumberProviderTest \ 55 DownloadAppFunctionalTests \ 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-tplus \ 76 ExtServicesUnitTests-sminus \ 77 FrameworksNetSmokeTests \ 78 FlickerLibTest \ 79 WMShellUnitTests \ 80 trace_config_detailed.textproto \ 81 perfetto_trace_processor_shell \ 82 CarDeveloperOptionsUnitTests \ 83 SpaPrivilegedLibTests \ 84 SettingsSpaUnitTests \ 85 SpaLibTests \ 86 PermissionServiceMockingTests 87 88ifneq ($(strip $(BOARD_PERFSETUP_SCRIPT)),) 89instrumentation_tests += perf-setup 90endif 91 92# Storage Manager may not exist on device 93ifneq ($(filter StorageManager, $(PRODUCT_PACKAGES)),) 94 95instrumentation_tests += StorageManagerUnitTests 96 97endif 98