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