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

Unified Diff: chrome/browser/profiles/profile_manager_browsertest.cc

Issue 306343002: Disable ProfileManagerBrowserTest.DeletePasswords on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_manager_browsertest.cc
diff --git a/chrome/browser/profiles/profile_manager_browsertest.cc b/chrome/browser/profiles/profile_manager_browsertest.cc
index 42e83480ad5a6c3a0abaad13fccaccac2d06323e..1ed99f794a8be2b666dd1d4169f8371e69e7a2a8 100644
--- a/chrome/browser/profiles/profile_manager_browsertest.cc
+++ b/chrome/browser/profiles/profile_manager_browsertest.cc
@@ -396,6 +396,9 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, EphemeralProfile) {
ASSERT_EQ(1U, cache.GetNumberOfProfiles());
}
+// The test is ending with timeout on Win. It's not important because there is
+// no keychain on Windows.
battre 2014/06/02 13:18:03 nit: Keychain (capital letter)
+#if !defined(OS_WIN)
IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) {
Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_TRUE(profile);
@@ -441,3 +444,4 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) {
EXPECT_TRUE(verify_delete.IsCalled());
EXPECT_EQ(0u, verify_delete.GetPasswords().size());
}
+#endif
battre 2014/06/02 13:18:03 #endif // !defined(OS_WIN) ?
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698