summaryrefslogtreecommitdiffstats
path: root/tests/component/uncrypt_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-04-05 04:59:40 +0200
committerTao Bao <tbao@google.com>2017-04-05 05:35:10 +0200
commitad87d9dc7823d74f067a4d82a8884f39d523acc9 (patch)
tree4ace1cad9d4d12c35e9c3cb69ee24060c7740e74 /tests/component/uncrypt_test.cpp
parentMerge "Boot control HAL based on the A/B headers." (diff)
downloadandroid_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar.gz
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar.bz2
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar.lz
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar.xz
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.tar.zst
android_bootable_recovery-ad87d9dc7823d74f067a4d82a8884f39d523acc9.zip
Diffstat (limited to '')
-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,