[Sheriff] Disable TaskManagerExistingPrintPreview for being flaky on Mac.

BUG=367665
TBR=nick@chromium.org
NOTREECHECKS=true
NOTRY=true

Review URL: https://codereview.chromium.org/255903005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266497 0039d316-1c4b-4281-b951-d872f2087c98
parent 3fb0edf2
...@@ -103,7 +103,14 @@ IN_PROC_BROWSER_TEST_F(PrintPreviewTest, TaskManagerNewPrintPreview) { ...@@ -103,7 +103,14 @@ IN_PROC_BROWSER_TEST_F(PrintPreviewTest, TaskManagerNewPrintPreview) {
ASSERT_NO_FATAL_FAILURE(WaitForTaskManagerRows(1, MatchPrint("about:blank"))); ASSERT_NO_FATAL_FAILURE(WaitForTaskManagerRows(1, MatchPrint("about:blank")));
} }
IN_PROC_BROWSER_TEST_F(PrintPreviewTest, TaskManagerExistingPrintPreview) { // Disable the test for mac as it started being flaky, see http://crbug/367665.
#if defined(OS_MACOSX) && !defined(OS_IOS)
#define MAYBE_TaskManagerExistingPrintPreview DISABLED_TaskManagerExistingPrintPreview
#else
#define MAYBE_TaskManagerExistingPrintPreview TaskManagerExistingPrintPreview
#endif
IN_PROC_BROWSER_TEST_F(PrintPreviewTest,
MAYBE_TaskManagerExistingPrintPreview) {
// Create the print preview dialog. // Create the print preview dialog.
Print(); Print();
......
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