Home | History | Annotate | Download | only in tests
      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 
     15 instrumentation_tests := \
     16     HelloWorldTests \
     17     BluetoothInstrumentationTests \
     18     crashcollector \
     19     LongevityPlatformLibTests \
     20     ManagedProvisioningTests \
     21     FrameworksCoreTests \
     22     BinderProxyCountingTestApp \
     23     BinderProxyCountingTestService \
     24     FrameworksNetTests \
     25     FrameworksUiServicesTests \
     26     BstatsTestApp \
     27     ConnTestApp \
     28     FrameworksServicesTests \
     29     JobTestApp \
     30     SuspendTestApp \
     31     FrameworksUtilTests \
     32     MtpDocumentsProviderTests \
     33     MtpTests \
     34     DocumentsUITests \
     35     ShellTests \
     36     SystemUITests \
     37     TestablesTests \
     38     FrameworksWifiApiTests \
     39     FrameworksWifiTests \
     40     FrameworksTelephonyTests \
     41     ContactsProviderTests \
     42     ContactsProviderTests2 \
     43     SettingsUnitTests \
     44     TelecomUnitTests \
     45     TraceurUiTests \
     46     AndroidVCardTests \
     47     PermissionFunctionalTests \
     48     BlockedNumberProviderTest \
     49     SettingsFunctionalTests \
     50     LauncherFunctionalTests \
     51     DownloadAppFunctionalTests \
     52     NotificationFunctionalTests \
     53     DexLoggerIntegrationTests \
     54     UsbTests \
     55     DownloadProviderTests \
     56     EmergencyInfoUnitTests \
     57     CalendarProviderTests \
     58     SettingsLibTests \
     59     RSTest \
     60     PrintSpoolerOutOfProcessTests \
     61     CellBroadcastReceiverUnitTests \
     62     TelephonyProviderTests \
     63     CarrierConfigTests \
     64     TeleServiceTests \
     65     PresencePollingTests \
     66     SettingsProviderTest \
     67     FrameworksLocationTests \
     68     FrameworksPrivacyLibraryTests \
     69     SettingsUITests
     70 
     71 # Android Things specific tests
     72 ifeq ($(PRODUCT_IOT),true)
     73 
     74 instrumentation_tests += \
     75     AndroidThingsTests \
     76     ThingsIntegrationTests \
     77     WifiSetupUnitTests
     78 
     79 endif  # PRODUCT_IOT == true
     80 
     81 # Storage Manager may not exist on device
     82 ifneq ($(filter StorageManager, $(PRODUCT_PACKAGES)),)
     83 
     84 instrumentation_tests += StorageManagerUnitTests
     85 
     86 endif
     87