Commit 997a93c2 authored by Kristi Park's avatar Kristi Park Committed by Commit Bot

[Sheriff] Disable flaky SerialTest.NavigateWithChooserCrossOrigin

Multiple flakes in linux-chromeos-chrome (e.g. https://ci.chromium.org/p/chrome/builders/ci/linux-chromeos-chrome/7058)

TBR=reillyg@chromium.org

Bug: 1069695
Change-Id: Ib783ef93bbb2d005aa6f49446343f6786bd89a12
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300663
Commit-Queue: Kristi Park <kristipark@chromium.org>
Reviewed-by: default avatarKristi Park <kristipark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#788785}
parent a308aec1
......@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "base/command_line.h"
#include "build/build_config.h"
#include "chrome/browser/serial/serial_chooser_context.h"
#include "chrome/browser/serial/serial_chooser_context_factory.h"
#include "chrome/browser/ui/browser.h"
......@@ -51,7 +52,14 @@ class SerialTest : public InProcessBrowserTest {
SerialChooserContext* context_;
};
IN_PROC_BROWSER_TEST_F(SerialTest, NavigateWithChooserCrossOrigin) {
// TODO(crbug/1069695): Flaky on linux-chromeos-chrome.
#if defined(OS_LINUX)
#define MAYBE_NavigateWithChooserCrossOrigin \
DISABLED_NavigateWithChooserCrossOrigin
#else
#define MAYBE_NavigateWithChooserCrossOrigin NavigateWithChooserCrossOrigin
#endif
IN_PROC_BROWSER_TEST_F(SerialTest, MAYBE_NavigateWithChooserCrossOrigin) {
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
......
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