diff options
author | Tianjie Xu <xunchang@google.com> | 2016-09-28 20:42:17 +0200 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2016-09-30 04:21:24 +0200 |
commit | 7aa88748f6ec4e53333d1a15747bc44826ccc410 (patch) | |
tree | 98edb6021753eec604eb1105c45b4e8e7fa569a3 /tests | |
parent | Merge "Report uncrypt errors in details" (diff) | |
download | android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar.gz android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar.bz2 android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar.lz android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar.xz android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.tar.zst android_bootable_recovery-7aa88748f6ec4e53333d1a15747bc44826ccc410.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/Android.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 633b3c451..0754c7acf 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -19,6 +19,7 @@ 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 LOCAL_STATIC_LIBRARIES := \ @@ -35,7 +36,7 @@ include $(BUILD_NATIVE_TEST) # Component tests include $(CLEAR_VARS) LOCAL_CLANG := true -LOCAL_CFLAGS += -Wno-unused-parameter +LOCAL_CFLAGS += -Wno-unused-parameter -Werror LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk LOCAL_MODULE := recovery_component_test LOCAL_C_INCLUDES := bootable/recovery |