summaryrefslogtreecommitdiffstats
path: root/tests/Android.mk
diff options
context:
space:
mode:
authorJed Estep <jestep@google.com>2016-02-04 02:02:09 +0100
committerJed Estep <jestep@google.com>2016-02-04 19:11:30 +0100
commit432918603f57de5a3acc6da9ff613d21c857d9fd (patch)
tree81b38e759f390892520e0d9fed168f26c21a2645 /tests/Android.mk
parentMerge "uncrypt: add options to setup bcb and clear bcb." (diff)
downloadandroid_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar.gz
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar.bz2
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar.lz
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar.xz
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.tar.zst
android_bootable_recovery-432918603f57de5a3acc6da9ff613d21c857d9fd.zip
Diffstat (limited to 'tests/Android.mk')
-rw-r--r--tests/Android.mk35
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)