summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-01-12 23:00:07 +0100
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-01-12 23:00:07 +0100
commit8775469f761e68dcf628414a9fa1a4cde3dd9b95 (patch)
tree875322c10116a04e14235eea35ad1dd26317ae91
parentImport translations. DO NOT MERGE ANYWHERE (diff)
parentMerge "Disable failed imgpatch tests" (diff)
downloadandroid_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar.gz
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar.bz2
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar.lz
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar.xz
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.tar.zst
android_bootable_recovery-8775469f761e68dcf628414a9fa1a4cde3dd9b95.zip
-rw-r--r--tests/unit/applypatch_modes_test.cpp4
-rw-r--r--tests/unit/applypatch_test.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/applypatch_modes_test.cpp b/tests/unit/applypatch_modes_test.cpp
index 08414b796..9e9797950 100644
--- a/tests/unit/applypatch_modes_test.cpp
+++ b/tests/unit/applypatch_modes_test.cpp
@@ -100,7 +100,7 @@ TEST_F(ApplyPatchModesTest, InvalidArgs) {
ASSERT_EQ(2, InvokeApplyPatchModes({ "applypatch", "-x" }));
}
-TEST_F(ApplyPatchModesTest, PatchModeEmmcTarget) {
+TEST_F(ApplyPatchModesTest, DISABLED_PatchModeEmmcTarget) {
std::vector<std::string> args{
"applypatch",
"--bonus",
@@ -118,7 +118,7 @@ TEST_F(ApplyPatchModesTest, PatchModeEmmcTarget) {
// Tests patching an eMMC target without a separate bonus file (i.e. recovery-from-boot patch has
// everything).
-TEST_F(ApplyPatchModesTest, PatchModeEmmcTargetWithoutBonusFile) {
+TEST_F(ApplyPatchModesTest, DISABLED_PatchModeEmmcTargetWithoutBonusFile) {
std::vector<std::string> args{
"applypatch", "--patch", from_testdata_base("recovery-from-boot-with-bonus.p"),
"--target", target, "--source",
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()));