summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorxunchang <xunchang@google.com>2019-03-11 19:28:41 +0100
committerxunchang <xunchang@google.com>2019-03-12 23:10:41 +0100
commit55e3d22223ada3c9da738b4ae2824c11aa0caa91 (patch)
tree359050fab5388745b28ab86ad7e81575ab0f9ba5 /tests
parentMerge "minui: Fix the wrong move of the callback." (diff)
downloadandroid_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar.gz
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar.bz2
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar.lz
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar.xz
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.tar.zst
android_bootable_recovery-55e3d22223ada3c9da738b4ae2824c11aa0caa91.zip
Diffstat (limited to 'tests')
-rw-r--r--tests/component/install_test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/component/install_test.cpp b/tests/component/install_test.cpp
index 117813694..969805b42 100644
--- a/tests/component/install_test.cpp
+++ b/tests/component/install_test.cpp
@@ -120,7 +120,10 @@ TEST(InstallTest, read_wipe_ab_partition_list) {
std::string wipe_package;
ASSERT_TRUE(android::base::ReadFileToString(temp_file.path, &wipe_package));
- std::vector<std::string> read_partition_list = GetWipePartitionList(wipe_package);
+ auto package = Package::CreateMemoryPackage(
+ std::vector<uint8_t>(wipe_package.begin(), wipe_package.end()), nullptr);
+
+ auto read_partition_list = GetWipePartitionList(package.get());
std::vector<std::string> expected = {
"/dev/block/bootdevice/by-name/system_a", "/dev/block/bootdevice/by-name/system_b",
"/dev/block/bootdevice/by-name/vendor_a", "/dev/block/bootdevice/by-name/vendor_b",