Commit 21168346 authored by Ramin Halavati's avatar Ramin Halavati Committed by Commit Bot

Disable flaky WebviewLogin Tests on ChromeOS.

Disables:
WebviewLoginTest.StoragePartitionHandling
WebviewProxyAuthLoginTest.ProxyAuthTransfer

Bug: 832608
Change-Id: Ie5e2d9c8b0fd99fd3c018a004f8b7b0c567d8c38
TBR: achuith@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/1012036Reviewed-by: default avatarRamin Halavati <rhalavati@chromium.org>
Commit-Queue: Ramin Halavati <rhalavati@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550595}
parent fb44f305
...@@ -307,7 +307,13 @@ IN_PROC_BROWSER_TEST_F(WebviewLoginTest, EmailPrefill) { ...@@ -307,7 +307,13 @@ IN_PROC_BROWSER_TEST_F(WebviewLoginTest, EmailPrefill) {
EXPECT_EQ(fake_gaia_->prefilled_email(), "user@example.com"); EXPECT_EQ(fake_gaia_->prefilled_email(), "user@example.com");
} }
IN_PROC_BROWSER_TEST_F(WebviewLoginTest, StoragePartitionHandling) { // Flaky on ChromeOS. https://crbug.com/832608
#if defined(OS_CHROMEOS)
#define MAYBE_StoragePartitionHandling DISABLED_StoragePartitionHandling
#else
#define MAYBE_StoragePartitionHandling StoragePartitionHandling
#endif
IN_PROC_BROWSER_TEST_F(WebviewLoginTest, MAYBE_StoragePartitionHandling) {
WaitForGaiaPageLoad(); WaitForGaiaPageLoad();
// Start with identifer page. // Start with identifer page.
...@@ -938,7 +944,13 @@ class WebviewProxyAuthLoginTest : public WebviewLoginTest { ...@@ -938,7 +944,13 @@ class WebviewProxyAuthLoginTest : public WebviewLoginTest {
DISALLOW_COPY_AND_ASSIGN(WebviewProxyAuthLoginTest); DISALLOW_COPY_AND_ASSIGN(WebviewProxyAuthLoginTest);
}; };
IN_PROC_BROWSER_TEST_F(WebviewProxyAuthLoginTest, ProxyAuthTransfer) { // Flaky on ChromeOS. https://crbug.com/832608
#if defined(OS_CHROMEOS)
#define MAYBE_ProxyAuthTransfer DISABLED_ProxyAuthTransfer
#else
#define MAYBE_ProxyAuthTransfer ProxyAuthTransfer
#endif
IN_PROC_BROWSER_TEST_F(WebviewProxyAuthLoginTest, MAYBE_ProxyAuthTransfer) {
WaitForSigninScreen(); WaitForSigninScreen();
LoginHandler* login_handler = WaitForAuthRequested(); LoginHandler* login_handler = WaitForAuthRequested();
......
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