Commit d42d1308 authored by mark a. foltz's avatar mark a. foltz

[Media Router] Disable flaky MR tests

TBR=zhaobin

Bug: 822231
Change-Id: Ibd6c654a1b5cdc2449ed091de1b1a64589df0746
Reviewed-on: https://chromium-review.googlesource.com/964729Reviewed-by: default avatarmark a. foltz <mfoltz@chromium.org>
Reviewed-by: default avatarAdam Parker <amp@chromium.org>
Cr-Commit-Position: refs/heads/master@{#543482}
parent 1720d2a6
...@@ -706,7 +706,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, Basic) { ...@@ -706,7 +706,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, Basic) {
// Tests that creating a route with a local file opens the file in a new tab. // Tests that creating a route with a local file opens the file in a new tab.
// TODO(crbug.com/818767): Fails when run with Chromium component. // TODO(crbug.com/818767): Fails when run with Chromium component.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest,
DISABLED_OpenLocalMediaFileInCurrentTab) { MANUAL_OpenLocalMediaFileInCurrentTab) {
// Start at a new tab, the file should open in the same tab. // Start at a new tab, the file should open in the same tab.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL)); ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL));
// Make sure there is 1 tab. // Make sure there is 1 tab.
...@@ -755,7 +755,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, ...@@ -755,7 +755,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest,
// Tests that creating a route with a local file opens in fullscreen. // Tests that creating a route with a local file opens in fullscreen.
// TODO(crbug.com/822029): Fails on msan; fix and re-enable. // TODO(crbug.com/822029): Fails on msan; fix and re-enable.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest,
DISABLED_OpenLocalMediaFileFullscreen) { MANUAL_OpenLocalMediaFileFullscreen) {
// Start at a new tab, the file should open in the same tab. // Start at a new tab, the file should open in the same tab.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL)); ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL));
// Make sure there is 1 tab. // Make sure there is 1 tab.
...@@ -887,7 +887,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationIncognitoBrowserTest, Basic) { ...@@ -887,7 +887,7 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationIncognitoBrowserTest, Basic) {
RunBasicTest(); RunBasicTest();
} }
// TODO(crbug.com/822300): Flaky test. // TODO(crbug.com/822300): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationIncognitoBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationIncognitoBrowserTest,
MANUAL_ReconnectSession) { MANUAL_ReconnectSession) {
RunReconnectSessionTest(); RunReconnectSessionTest();
......
...@@ -133,8 +133,9 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, Dialog_Basic) { ...@@ -133,8 +133,9 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, Dialog_Basic) {
LOG(INFO) << "Closed dialog, end of test"; LOG(INFO) << "Closed dialog, end of test";
} }
// TODO(crbug.com/822301): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationBrowserTest,
Dialog_RouteCreationTimedOut) { MANUAL_Dialog_RouteCreationTimedOut) {
SetTestData(FILE_PATH_LITERAL("route_creation_timed_out.json")); SetTestData(FILE_PATH_LITERAL("route_creation_timed_out.json"));
OpenTestPage(FILE_PATH_LITERAL("basic_test.html")); OpenTestPage(FILE_PATH_LITERAL("basic_test.html"));
content::WebContents* web_contents = content::WebContents* web_contents =
......
...@@ -42,18 +42,20 @@ class MediaRouterIntegrationOneUABrowserTest ...@@ -42,18 +42,20 @@ class MediaRouterIntegrationOneUABrowserTest
} }
}; };
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, Basic) { // TODO(crbug.com/822231): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, MANUAL_Basic) {
RunBasicTest(); RunBasicTest();
} }
// TODO(crbug.com/822216): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest,
SendAndOnMessage) { MANUAL_SendAndOnMessage) {
RunSendMessageTest("foo"); RunSendMessageTest("foo");
} }
// TODO(crbug.com/821717): Flaky in Chromium waterfall. // TODO(crbug.com/821717): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest,
DISABLED_ReceiverCloseConnection) { MANUAL_ReceiverCloseConnection) {
WebContents* web_contents = StartSessionWithTestPageAndChooseSink(); WebContents* web_contents = StartSessionWithTestPageAndChooseSink();
CheckSessionValidity(web_contents); CheckSessionValidity(web_contents);
ExecuteJavaScriptAPI(web_contents, kInitiateCloseFromReceiverPageScript); ExecuteJavaScriptAPI(web_contents, kInitiateCloseFromReceiverPageScript);
...@@ -66,13 +68,13 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, ...@@ -66,13 +68,13 @@ IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest,
// TODO(crbug.com/821717): Flaky in Chromium waterfall. // TODO(crbug.com/821717): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest,
DISABLED_ReconnectSession) { MANUAL_ReconnectSession) {
RunReconnectSessionTest(); RunReconnectSessionTest();
} }
// TODO(crbug.com/821717): Flaky in Chromium waterfall. // TODO(crbug.com/821717): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUABrowserTest,
DISABLED_ReconnectSessionSameTab) { MANUAL_ReconnectSessionSameTab) {
RunReconnectSessionSameTabTest(); RunReconnectSessionSameTabTest();
} }
...@@ -85,14 +87,15 @@ class MediaRouterIntegrationOneUANoReceiverBrowserTest ...@@ -85,14 +87,15 @@ class MediaRouterIntegrationOneUANoReceiverBrowserTest
} }
}; };
// TODO(crbug.com/822179,822337): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUANoReceiverBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUANoReceiverBrowserTest,
Basic) { MANUAL_Basic) {
RunBasicTest(); RunBasicTest();
} }
// TODO(crbug.com/821717): Flaky in Chromium waterfall. // TODO(crbug.com/821717): Flaky in Chromium waterfall.
IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUANoReceiverBrowserTest, IN_PROC_BROWSER_TEST_F(MediaRouterIntegrationOneUANoReceiverBrowserTest,
DISABLED_Fail_SendMessage) { MANUAL_Fail_SendMessage) {
RunFailToSendMessageTest(); RunFailToSendMessageTest();
} }
......
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