Commit e90ec923 authored by vasilii@chromium.org's avatar vasilii@chromium.org

Disable ProfileManagerBrowserTest.DeletePasswords on Windows.

It fails with timeout because cleaning the profile directory is too heavy operation.

BUG=343891
TBR=erg@chromium.org,gcasto@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/306343002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274224 0039d316-1c4b-4281-b951-d872f2087c98
parent b242810e
...@@ -396,6 +396,9 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, EphemeralProfile) { ...@@ -396,6 +396,9 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, EphemeralProfile) {
ASSERT_EQ(1U, cache.GetNumberOfProfiles()); ASSERT_EQ(1U, cache.GetNumberOfProfiles());
} }
// The test is ending with timeout on Win. It's not important because there is
// no keychain on Windows.
#if !defined(OS_WIN)
IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) { IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) {
Profile* profile = ProfileManager::GetActiveUserProfile(); Profile* profile = ProfileManager::GetActiveUserProfile();
ASSERT_TRUE(profile); ASSERT_TRUE(profile);
...@@ -441,3 +444,4 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) { ...@@ -441,3 +444,4 @@ IN_PROC_BROWSER_TEST_F(ProfileManagerBrowserTest, DeletePasswords) {
EXPECT_TRUE(verify_delete.IsCalled()); EXPECT_TRUE(verify_delete.IsCalled());
EXPECT_EQ(0u, verify_delete.GetPasswords().size()); EXPECT_EQ(0u, verify_delete.GetPasswords().size());
} }
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment