summaryrefslogtreecommitdiffstats
path: root/tests/component/uncrypt_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-04-05 17:48:35 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-04-05 17:48:35 +0200
commitf25cd871cc7ab82e5496685959df224967307e24 (patch)
tree33f5a5e26c4d3d20f5f42b107a1dc020b4389c49 /tests/component/uncrypt_test.cpp
parentMerge "Boot control HAL based on the A/B headers." am: b5fca37976 (diff)
parentMerge "tests: Use get_bootloader_message_blk_device() to find /misc." (diff)
downloadandroid_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar.gz
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar.bz2
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar.lz
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar.xz
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.tar.zst
android_bootable_recovery-f25cd871cc7ab82e5496685959df224967307e24.zip
Diffstat (limited to 'tests/component/uncrypt_test.cpp')
-rw-r--r--tests/component/uncrypt_test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/component/uncrypt_test.cpp b/tests/component/uncrypt_test.cpp
index 5e057e129..3925236a5 100644
--- a/tests/component/uncrypt_test.cpp
+++ b/tests/component/uncrypt_test.cpp
@@ -30,8 +30,6 @@
#include <bootloader_message/bootloader_message.h>
#include <gtest/gtest.h>
-#include "common/component_test_util.h"
-
using namespace std::string_literals;
static const std::string UNCRYPT_SOCKET = "/dev/socket/uncrypt";
@@ -65,7 +63,8 @@ class UncryptTest : public ::testing::Test {
ASSERT_TRUE(success) << "uncrypt service is not available.";
- has_misc = parse_misc();
+ std::string err;
+ has_misc = !get_bootloader_message_blk_device(&err).empty();
}
void SetupOrClearBcb(bool isSetup, const std::string& message,