diff options
author | David Zeuthen <zeuthen@google.com> | 2017-05-08 19:41:28 +0200 |
---|---|---|
committer | David Zeuthen <zeuthen@google.com> | 2017-05-24 20:14:11 +0200 |
commit | 8ed9738b62b075205a81489b01ec882520da183a (patch) | |
tree | 6944d37189d4e8d6bf1515d9d93742113ec99997 /tests | |
parent | Merge "Print SHA1 of the patch if bsdiff fails with data error" (diff) | |
download | android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar.gz android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar.bz2 android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar.lz android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar.xz android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.tar.zst android_bootable_recovery-8ed9738b62b075205a81489b01ec882520da183a.zip |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Android.mk | 4 | ||||
-rw-r--r-- | tests/component/update_verifier_test.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 02a240127..4ee59b526 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -93,6 +93,10 @@ ifeq ($(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_SUPPORTS_VERITY),true) LOCAL_CFLAGS += -DPRODUCT_SUPPORTS_VERITY=1 endif +ifeq ($(BOARD_AVB_ENABLE),true) +LOCAL_CFLAGS += -DBOARD_AVB_ENABLE=1 +endif + LOCAL_MODULE := recovery_component_test LOCAL_COMPATIBILITY_SUITE := device-tests LOCAL_C_INCLUDES := bootable/recovery diff --git a/tests/component/update_verifier_test.cpp b/tests/component/update_verifier_test.cpp index 73b4478aa..5fc7ef63f 100644 --- a/tests/component/update_verifier_test.cpp +++ b/tests/component/update_verifier_test.cpp @@ -24,7 +24,7 @@ class UpdateVerifierTest : public ::testing::Test { protected: void SetUp() override { -#ifdef PRODUCT_SUPPORTS_VERITY +#if defined(PRODUCT_SUPPORTS_VERITY) || defined(BOARD_AVB_ENABLE) verity_supported = true; #else verity_supported = false; |