Commit f99d54c5 authored by alph@chromium.org's avatar alph@chromium.org

Sheriffing: Disable failing tests PrintCommands and TaskManagerNewPrintPreview on Linux LSAN

TBR=thestig@chromium.org,jam@chromium.org
NOTRY=true
BUG=382523

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275820 0039d316-1c4b-4281-b951-d872f2087c98
parent e91a4bdf
...@@ -48,6 +48,10 @@ class PrintPreviewTest : public InProcessBrowserTest { ...@@ -48,6 +48,10 @@ class PrintPreviewTest : public InProcessBrowserTest {
} }
}; };
// The two tests below are failing on Linux LSAN
// crbug.com/382523
#if !defined(ADDRESS_SANITIZER)
IN_PROC_BROWSER_TEST_F(PrintPreviewTest, PrintCommands) { IN_PROC_BROWSER_TEST_F(PrintPreviewTest, PrintCommands) {
// We start off at about:blank page. // We start off at about:blank page.
// Make sure there is 1 tab and print is enabled. // Make sure there is 1 tab and print is enabled.
...@@ -100,6 +104,8 @@ IN_PROC_BROWSER_TEST_F(PrintPreviewTest, MAYBE_TaskManagerNewPrintPreview) { ...@@ -100,6 +104,8 @@ IN_PROC_BROWSER_TEST_F(PrintPreviewTest, MAYBE_TaskManagerNewPrintPreview) {
ASSERT_NO_FATAL_FAILURE(WaitForTaskManagerRows(1, MatchPrint("about:blank"))); ASSERT_NO_FATAL_FAILURE(WaitForTaskManagerRows(1, MatchPrint("about:blank")));
} }
#endif
// Disable the test for mac as it started being flaky, see http://crbug/367665. // Disable the test for mac as it started being flaky, see http://crbug/367665.
#if defined(OS_MACOSX) && !defined(OS_IOS) #if defined(OS_MACOSX) && !defined(OS_IOS)
#define MAYBE_TaskManagerExistingPrintPreview DISABLED_TaskManagerExistingPrintPreview #define MAYBE_TaskManagerExistingPrintPreview DISABLED_TaskManagerExistingPrintPreview
......
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