diff options
author | Tao Bao <tbao@google.com> | 2016-11-08 19:29:36 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-11-08 19:29:37 +0100 |
commit | 70172d76ef1b7563cf1bc508cb8045a192ad25a0 (patch) | |
tree | 18816aa32af60db69228d2630152383d2984e39f /tests/Android.mk | |
parent | Merge "tests: Fix unit/zip_test.cpp." (diff) | |
parent | otautil: Clean up SysUtil.cpp. (diff) | |
download | android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar.gz android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar.bz2 android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar.lz android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar.xz android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.tar.zst android_bootable_recovery-70172d76ef1b7563cf1bc508cb8045a192ad25a0.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/Android.mk | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 8f19992b6..86591f71d 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -18,7 +18,6 @@ LOCAL_PATH := $(call my-dir) # Unit tests include $(CLEAR_VARS) -LOCAL_CLANG := true LOCAL_CFLAGS := -Werror LOCAL_MODULE := recovery_unit_test LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk @@ -32,17 +31,19 @@ LOCAL_STATIC_LIBRARIES := \ libselinux \ libbase -LOCAL_SRC_FILES := unit/asn1_decoder_test.cpp -LOCAL_SRC_FILES += unit/recovery_test.cpp -LOCAL_SRC_FILES += unit/locale_test.cpp -LOCAL_SRC_FILES += unit/zip_test.cpp +LOCAL_SRC_FILES := \ + unit/asn1_decoder_test.cpp \ + unit/locale_test.cpp \ + unit/recovery_test.cpp \ + unit/sysutil_test.cpp \ + unit/zip_test.cpp + LOCAL_C_INCLUDES := bootable/recovery LOCAL_SHARED_LIBRARIES := liblog include $(BUILD_NATIVE_TEST) # Component tests include $(CLEAR_VARS) -LOCAL_CLANG := true LOCAL_CFLAGS := -Werror LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk LOCAL_MODULE := recovery_component_test |