Commit 991065d4 authored by vitaliii's avatar vitaliii Committed by Commit Bot

Disable flaky SSLUITest.SameDocumentHasSSLState on Win.

TBR=meacer@chromium.org

Bug: 872332
Change-Id: I46c863d9b00e76f45c2e6dd4adfd29cd0ec0865a
Reviewed-on: https://chromium-review.googlesource.com/1170770
Commit-Queue: vitaliii <vitaliii@chromium.org>
Reviewed-by: default avatarvitaliii <vitaliii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#582132}
parent 4e054f53
...@@ -5801,7 +5801,13 @@ IN_PROC_BROWSER_TEST_P(SSLUITest, DISABLED_RestoreThenNavigateHasSSLState) { ...@@ -5801,7 +5801,13 @@ IN_PROC_BROWSER_TEST_P(SSLUITest, DISABLED_RestoreThenNavigateHasSSLState) {
// could happen when the user's login is expired and the server redirects them // could happen when the user's login is expired and the server redirects them
// to a login page. This will be considered a same document navigation but we // to a login page. This will be considered a same document navigation but we
// do want to update the SSL state. // do want to update the SSL state.
IN_PROC_BROWSER_TEST_P(SSLUITest, SameDocumentHasSSLState) { #if defined(OS_WIN)
// flaky http://crbug.com/872332
#define MAYBE_SameDocumentHasSSLState DISABLED_SameDocumentHasSSLState
#else
#define MAYBE_SameDocumentHasSSLState SameDocumentHasSSLState
#endif
IN_PROC_BROWSER_TEST_P(SSLUITest, MAYBE_SameDocumentHasSSLState) {
ASSERT_TRUE(embedded_test_server()->Start()); ASSERT_TRUE(embedded_test_server()->Start());
ASSERT_TRUE(https_server_.Start()); ASSERT_TRUE(https_server_.Start());
......
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