diff options
author | Tao Bao <tbao@google.com> | 2016-02-05 19:44:55 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-02-05 19:44:55 +0100 |
commit | 9865c55254a1583e18a7e8ac502f2c2143ed8b82 (patch) | |
tree | 14661d097053a38509a5b6a9395a17509a7f02e3 /tests/Android.mk | |
parent | Merge "updater: fix memory leak based on static analysis." (diff) | |
parent | Merge "Refactor existing tests to use gtest" (diff) | |
download | android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar.gz android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar.bz2 android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar.lz android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar.xz android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.tar.zst android_bootable_recovery-9865c55254a1583e18a7e8ac502f2c2143ed8b82.zip |
Diffstat (limited to 'tests/Android.mk')
-rw-r--r-- | tests/Android.mk | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 4ce00b457..3f3c433eb 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -16,11 +16,40 @@ LOCAL_PATH := $(call my-dir) +# Unit tests include $(CLEAR_VARS) LOCAL_CLANG := true +LOCAL_MODULE := recovery_unit_test LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk LOCAL_STATIC_LIBRARIES := libverifier -LOCAL_SRC_FILES := asn1_decoder_test.cpp -LOCAL_MODULE := asn1_decoder_test -LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. +LOCAL_SRC_FILES := unit/asn1_decoder_test.cpp +LOCAL_C_INCLUDES := bootable/recovery +include $(BUILD_NATIVE_TEST) + +# Component tests +include $(CLEAR_VARS) +LOCAL_CLANG := true +LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk +LOCAL_MODULE := recovery_component_test +LOCAL_C_INCLUDES := bootable/recovery +LOCAL_SRC_FILES := component/verifier_test.cpp +LOCAL_FORCE_STATIC_EXECUTABLE := true +LOCAL_STATIC_LIBRARIES := \ + libbase \ + libverifier \ + libmincrypt \ + libminui \ + libminzip \ + libcutils \ + libc + +testdata_out_path := $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE) +testdata_files := $(call find-subdir-files, testdata/*) + +GEN := $(addprefix $(testdata_out_path)/, $(testdata_files)) +$(GEN): PRIVATE_PATH := $(LOCAL_PATH) +$(GEN): PRIVATE_CUSTOM_TOOL = cp $< $@ +$(GEN): $(testdata_out_path)/% : $(LOCAL_PATH)/% + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) include $(BUILD_NATIVE_TEST) |