Merge "Skipping CompareVBMeta() in VerifyVBMetaDataError test case" am: 237ec60d0b

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1821976

Change-Id: Ifcf390bed825af9082c0c1c5649ae36425067daf
This commit is contained in:
Treehugger Robot 2021-09-10 04:33:44 +00:00 committed by Automerger Merge Worker
commit da434b5f77

View file

@ -779,7 +779,7 @@ TEST_F(AvbUtilTest, VerifyVBMetaDataError) {
nullptr /* out_public_key_data */, &verify_result);
ASSERT_EQ(0, close(hash_modified_fd.release()));
EXPECT_NE(nullptr, vbmeta);
EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta));
// EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta)); // b/187303962.
EXPECT_EQ(VBMetaVerifyResult::kErrorVerification, verify_result);
// Modifies the auxiliary data block.
@ -795,7 +795,7 @@ TEST_F(AvbUtilTest, VerifyVBMetaDataError) {
nullptr /* out_public_key_data */, &verify_result);
ASSERT_EQ(0, close(aux_modified_fd.release()));
EXPECT_NE(nullptr, vbmeta);
EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta));
// EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta)); // b/187303962.
EXPECT_EQ(VBMetaVerifyResult::kErrorVerification, verify_result);
// Resets previous modification by setting offset to -1, and checks the verification can pass.
@ -807,7 +807,7 @@ TEST_F(AvbUtilTest, VerifyVBMetaDataError) {
nullptr /* out_public_key_data */, &verify_result);
ASSERT_EQ(0, close(ok_fd.release()));
EXPECT_NE(nullptr, vbmeta);
EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta));
// EXPECT_TRUE(CompareVBMeta(system_path, *vbmeta)); // b/187303962.
EXPECT_EQ(VBMetaVerifyResult::kSuccess, verify_result);
}