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     crashcollector \
     18     LongevityLibTests \
     19     ManagedProvisioningTests \
     20     FrameworksCoreTests \
     21     FrameworksNetTests \
     22     FrameworksNotificationTests \
     23     ConnTestApp \
     24     FrameworksServicesTests \
     25     FrameworksUtilTests \
     26     MtpDocumentsProviderTests \
     27     DocumentsUITests \
     28     ShellTests \
     29     SystemUITests \
     30     TestablesTests \
     31     RecyclerViewTests \
     32     FrameworksWifiApiTests \
     33     FrameworksWifiTests \
     34     FrameworksTelephonyTests \
     35     ContactsProviderTests \
     36     ContactsProviderTests2 \
     37     SettingsUnitTests \
     38     TelecomUnitTests \
     39     AndroidVCardTests \
     40     PermissionFunctionalTests \
     41     BlockedNumberProviderTest \
     42     SettingsFunctionalTests \
     43     LauncherFunctionalTests \
     44     DownloadAppFunctionalTests \
     45     NotificationFunctionalTests \
     46     DownloadProviderTests \
     47     EmergencyInfoTests \
     48     CalendarProviderTests \
     49     SettingsLibTests \
     50     RSTest \
     51     PrintSpoolerOutOfProcessTests \
     52     CellBroadcastReceiverUnitTests \
     53     TelephonyProviderTests \
     54     CarrierConfigTests \
     55     TeleServiceTests \
     56     SettingsProviderTest \
     57     SettingsTests
     58 
     59 # Android Things specific tests
     60 ifeq ($(PRODUCT_IOT),true)
     61 
     62 instrumentation_tests += \
     63     AndroidThingsTests \
     64     IoTLauncherTests \
     65     WifiSetupUnitTests
     66 
     67 endif  # PRODUCT_IOT == true
     68 
     69 # Storage Manager may not exist on device
     70 ifneq ($(filter StorageManager, $(PRODUCT_PACKAGES)),)
     71 
     72 instrumentation_tests += StorageManagerUnitTests
     73 
     74 endif