diff options
author | Tianjie Xu <xunchang@google.com> | 2016-11-08 22:13:43 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-11-08 22:13:43 +0100 |
commit | da0f2b2adf7b7d51eacb724fc67c86e27370177a (patch) | |
tree | fa9dae74c8342ec5c70e5247295106a641565b7d /tests/Android.mk | |
parent | resolve merge conflicts of 70172d7 to stage-aosp-master am: 55883f660d am: 5d52303488 (diff) | |
parent | Merge "Move recovery_test.cpp out of unit test" am: 8bfd96c0f8 am: e9390679c9 (diff) | |
download | android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar.gz android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar.bz2 android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar.lz android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar.xz android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.tar.zst android_bootable_recovery-da0f2b2adf7b7d51eacb724fc67c86e27370177a.zip |
Diffstat (limited to 'tests/Android.mk')
-rw-r--r-- | tests/Android.mk | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 86591f71d..e87a22964 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -34,7 +34,6 @@ LOCAL_STATIC_LIBRARIES := \ LOCAL_SRC_FILES := \ unit/asn1_decoder_test.cpp \ unit/locale_test.cpp \ - unit/recovery_test.cpp \ unit/sysutil_test.cpp \ unit/zip_test.cpp @@ -42,6 +41,18 @@ LOCAL_C_INCLUDES := bootable/recovery LOCAL_SHARED_LIBRARIES := liblog include $(BUILD_NATIVE_TEST) +# Manual tests +include $(CLEAR_VARS) +LOCAL_CLANG := true +LOCAL_CFLAGS := -Werror +LOCAL_MODULE := recovery_manual_test +LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk +LOCAL_STATIC_LIBRARIES := libbase + +LOCAL_SRC_FILES := manual/recovery_test.cpp +LOCAL_SHARED_LIBRARIES := liblog +include $(BUILD_NATIVE_TEST) + # Component tests include $(CLEAR_VARS) LOCAL_CFLAGS := -Werror |