Commit ae1771a0 authored by Fergal Daly's avatar Fergal Daly

disable 2 tests on win 7 that are blocking the CQ

mac-rel is being weird, so NOTRY=true

TBR=aboxhall@chromium.org
NOTRY=true

Bug: 982234,982998
Change-Id: I2f8998ac253cba11bbe319c5cf890b913093abd3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1697403
Commit-Queue: Fergal Daly <fergal@chromium.org>
Reviewed-by: default avatarDominick Ng <dominickn@chromium.org>
Cr-Commit-Position: refs/heads/master@{#676307}
parent f650afc8
......@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "build/build_config.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/test/browser_test_utils.h"
......@@ -16,8 +17,16 @@ const char kScript[] =
" });"
"});";
// http://crbug.com/982234
#if defined(OS_WIN)
#define MAYBE_AutoCloseTabOnNonWebProtocolNavigation \
DISABLED_AutoCloseTabOnNonWebProtocolNavigation
#else
#define MAYBE_AutoCloseTabOnNonWebProtocolNavigation \
AutoCloseTabOnNonWebProtocolNavigation
#endif
IN_PROC_BROWSER_TEST_F(ExternalProtocolHandlerBrowserTest,
AutoCloseTabOnNonWebProtocolNavigation) {
MAYBE_AutoCloseTabOnNonWebProtocolNavigation) {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
EXPECT_EQ(true, EvalJs(web_contents, kScript));
......
......@@ -488,8 +488,16 @@ IN_PROC_BROWSER_TEST_P(DumpAccessibilityEventsTest,
RunEventTest(FILE_PATH_LITERAL("disabled-state-changed.html"));
}
// http://crbug.com/982998
#if defined(OS_WIN)
#define MAYBE_AccessibilityEventsExpandedChange \
DISABLED_AccessibilityEventsExpandedChange
#else
#define MAYBE_AccessibilityEventsExpandedChange \
AccessibilityEventsExpandedChange
#endif
IN_PROC_BROWSER_TEST_P(DumpAccessibilityEventsTest,
AccessibilityEventsExpandedChange) {
MAYBE_AccessibilityEventsExpandedChange) {
RunEventTest(FILE_PATH_LITERAL("expanded-change.html"));
}
......
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