Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Unified Diff: components/signin/core/browser/account_info_unittest.cc

Issue 1588913002: Fix AccountInfo uninitialized memory issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicit default value to false Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/signin/core/browser/account_info_unittest.cc
diff --git a/components/signin/core/browser/account_info_unittest.cc b/components/signin/core/browser/account_info_unittest.cc
index 2d9928d798f35856c5d263a55bc96da8a64e449f..663ad4efecf56016229fca045576bb6add72cce2 100644
--- a/components/signin/core/browser/account_info_unittest.cc
+++ b/components/signin/core/browser/account_info_unittest.cc
@@ -57,13 +57,7 @@ TEST_F(AccountInfoTest, UpdateWithNoModification) {
}
// Tests that UpdateWith() correctly updates its fields that were not set.
-// Fails under MSan. crbug.com/577333
-#if defined(MEMORY_SANITIZER)
-#define MAYBE_UpdateWithSuccessfulUpdate DISABLED_UpdateWithSuccessfulUpdate
-#else
-#define MAYBE_UpdateWithSuccessfulUpdate UpdateWithSuccessfulUpdate
-#endif
-TEST_F(AccountInfoTest, MAYBE_UpdateWithSuccessfulUpdate) {
+TEST_F(AccountInfoTest, UpdateWithSuccessfulUpdate) {
AccountInfo info;
info.account_id = info.gaia = info.email = "test_id";
« no previous file with comments | « components/signin/core/browser/account_info.cc ('k') | components/signin/core/browser/account_tracker_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698