diff options
author | Tao Bao <tbao@google.com> | 2019-09-24 01:23:57 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-09-24 01:23:57 +0200 |
commit | 164f4759a2ab167697e8c0183347bd428a522fc7 (patch) | |
tree | b7ab0af76118d4227d58c098c5db7991ece384b9 /tests | |
parent | Merge "applypatch: Use static libs for libbrotli and libbz." (diff) | |
parent | Merge "applypatch: Add backup_source parameter to PatchPartition." (diff) | |
download | android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar.gz android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar.bz2 android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar.lz android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar.xz android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.tar.zst android_bootable_recovery-164f4759a2ab167697e8c0183347bd428a522fc7.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/unit/applypatch_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/applypatch_test.cpp b/tests/unit/applypatch_test.cpp index 794f2c103..218a224f8 100644 --- a/tests/unit/applypatch_test.cpp +++ b/tests/unit/applypatch_test.cpp @@ -141,7 +141,7 @@ TEST_F(ApplyPatchTest, PatchPartition) { ASSERT_TRUE(LoadFileContents(from_testdata_base("bonus.file"), &bonus_fc)); Value bonus(Value::Type::BLOB, std::string(bonus_fc.data.cbegin(), bonus_fc.data.cend())); - ASSERT_TRUE(PatchPartition(target_partition, source_partition, patch, &bonus)); + ASSERT_TRUE(PatchPartition(target_partition, source_partition, patch, &bonus, false)); } // Tests patching an eMMC target without a separate bonus file (i.e. recovery-from-boot patch has @@ -151,7 +151,7 @@ TEST_F(ApplyPatchTest, PatchPartitionWithoutBonusFile) { ASSERT_TRUE(LoadFileContents(from_testdata_base("recovery-from-boot-with-bonus.p"), &patch_fc)); Value patch(Value::Type::BLOB, std::string(patch_fc.data.cbegin(), patch_fc.data.cend())); - ASSERT_TRUE(PatchPartition(target_partition, source_partition, patch, nullptr)); + ASSERT_TRUE(PatchPartition(target_partition, source_partition, patch, nullptr, false)); } class FreeCacheTest : public ::testing::Test { |