summaryrefslogtreecommitdiffstats
path: root/tests/unit/applypatch_test.cpp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2021-01-09 05:21:30 +0100
committerKelvin Zhang <zhangkelvin@google.com>2021-01-12 20:45:29 +0100
commitd77e7ea10556f9db8e3a6ceeaafa42149f863ec2 (patch)
tree875322c10116a04e14235eea35ad1dd26317ae91 /tests/unit/applypatch_test.cpp
parentMerge "Import translations. DO NOT MERGE ANYWHERE" (diff)
downloadandroid_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar.gz
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar.bz2
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar.lz
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar.xz
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.tar.zst
android_bootable_recovery-d77e7ea10556f9db8e3a6ceeaafa42149f863ec2.zip
Diffstat (limited to 'tests/unit/applypatch_test.cpp')
-rw-r--r--tests/unit/applypatch_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/applypatch_test.cpp b/tests/unit/applypatch_test.cpp
index 218a224f8..4b80dcee9 100644
--- a/tests/unit/applypatch_test.cpp
+++ b/tests/unit/applypatch_test.cpp
@@ -132,7 +132,7 @@ TEST_F(ApplyPatchTest, PatchPartitionCheck_UseBackup_BothCorrupted) {
PatchPartitionCheck(target_partition, Partition(target_file, source_size, source_sha1)));
}
-TEST_F(ApplyPatchTest, PatchPartition) {
+TEST_F(ApplyPatchTest, DISABLED_PatchPartition) {
FileContents patch_fc;
ASSERT_TRUE(LoadFileContents(from_testdata_base("recovery-from-boot.p"), &patch_fc));
Value patch(Value::Type::BLOB, std::string(patch_fc.data.cbegin(), patch_fc.data.cend()));
@@ -146,7 +146,7 @@ TEST_F(ApplyPatchTest, PatchPartition) {
// Tests patching an eMMC target without a separate bonus file (i.e. recovery-from-boot patch has
// everything).
-TEST_F(ApplyPatchTest, PatchPartitionWithoutBonusFile) {
+TEST_F(ApplyPatchTest, DISABLED_PatchPartitionWithoutBonusFile) {
FileContents patch_fc;
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()));