This allows Settings to test against the latest framework changes. Also replaced TestConfig with traditional robolectric.properties. Bug: 73173204 Bug: 73892008 Test: make -j56 RunSettingsRoboTests Change-Id: I3135b4fa5f095ba79b282a76f45dd9baa2584bc7
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
#############################################
|
|
# Settings Robolectric test target. #
|
|
#############################################
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := SettingsRoboTests
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_JAVA_RESOURCE_DIRS := config
|
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
robolectric_android-all-stub \
|
|
Robolectric_all-target \
|
|
mockito-robolectric-prebuilt \
|
|
truth-prebuilt
|
|
|
|
LOCAL_INSTRUMENTATION_FOR := Settings
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
#############################################################
|
|
# Settings runner target to run the previous target. #
|
|
#############################################################
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := RunSettingsRoboTests
|
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
SettingsRoboTests \
|
|
robolectric_android-all-stub \
|
|
Robolectric_all-target \
|
|
mockito-robolectric-prebuilt \
|
|
truth-prebuilt
|
|
|
|
LOCAL_TEST_PACKAGE := Settings
|
|
|
|
LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))../src
|
|
|
|
LOCAL_ROBOTEST_TIMEOUT := 36000
|
|
|
|
include external/robolectric-shadows/run_robotests.mk |