Commit bcc430dd authored by Justin Donnelly's avatar Justin Donnelly Committed by Commit Bot

Disable WebViewTests/WebViewTest.Interstitial* on Win dbg

Follow-on to https://crrev.com/c/746601 which seems to have gotten the
dbg condition backwards.

TBR=lazyboy@chromium.org

Bug: 779973
Change-Id: Ifd36b0644bbd209e901841b63c78403ee4631685
Reviewed-on: https://chromium-review.googlesource.com/747627Reviewed-by: default avatarJustin Donnelly <jdonnelly@chromium.org>
Commit-Queue: Justin Donnelly <jdonnelly@chromium.org>
Cr-Commit-Position: refs/heads/master@{#512927}
parent 0167d5b9
...@@ -1779,7 +1779,7 @@ IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeWebviewResizesContent) { ...@@ -1779,7 +1779,7 @@ IN_PROC_BROWSER_TEST_P(WebViewSizeTest, Shim_TestResizeWebviewResizesContent) {
// Test makes sure that interstitial pages renders in <webview>. // Test makes sure that interstitial pages renders in <webview>.
// Flaky on Win dbg: crbug.com/779973 // Flaky on Win dbg: crbug.com/779973
#if defined(OS_WIN) && !defined(NDEBUG) #if defined(OS_WIN) && defined(NDEBUG)
#define MAYBE_InterstitialPage DISABLED_InterstitialPage #define MAYBE_InterstitialPage DISABLED_InterstitialPage
#else #else
#define MAYBE_InterstitialPage InterstitialPage #define MAYBE_InterstitialPage InterstitialPage
...@@ -1809,7 +1809,7 @@ IN_PROC_BROWSER_TEST_P(WebViewTest, InterstitialPage) { ...@@ -1809,7 +1809,7 @@ IN_PROC_BROWSER_TEST_P(WebViewTest, InterstitialPage) {
// Test makes sure that interstitial pages are registered in the // Test makes sure that interstitial pages are registered in the
// RenderWidgetHostInputEventRouter when inside a <webview>. // RenderWidgetHostInputEventRouter when inside a <webview>.
// Flaky on Win dbg: crbug.com/779973 // Flaky on Win dbg: crbug.com/779973
#if defined(OS_WIN) && !defined(NDEBUG) #if defined(OS_WIN) && defined(NDEBUG)
#define MAYBE_InterstitialPageRouteEvents DISABLED_InterstitialPageRouteEvents #define MAYBE_InterstitialPageRouteEvents DISABLED_InterstitialPageRouteEvents
#else #else
#define MAYBE_InterstitialPageRouteEvents InterstitialPageRouteEvents #define MAYBE_InterstitialPageRouteEvents InterstitialPageRouteEvents
......
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