Commit 828dda8b authored by Kunihiko Sakamoto's avatar Kunihiko Sakamoto Committed by Commit Bot

[Sheriff] Disable OOPBrowserTest.Basic on Linux

TBR=khushalsagar@chromium.org

Bug: 1067662
Change-Id: I6a9c6de903d7b4b3f6dd5caa118f9f1af9fb8634
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2239144Reviewed-by: default avatarKunihiko Sakamoto <ksakamoto@chromium.org>
Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#777281}
parent 1fa19c62
......@@ -44,7 +44,13 @@ class OOPBrowserTest : public ContentBrowserTest {
// This test calls into system GL which is not instrumented with MSAN.
#if !defined(MEMORY_SANITIZER)
IN_PROC_BROWSER_TEST_F(OOPBrowserTest, Basic) {
// Failing on linux-trusty-rel bot. https://crbug.com/1067662
#if defined(OS_LINUX)
#define MAYBE_Basic DISABLED_Basic
#else
#define MAYBE_Basic Basic
#endif
IN_PROC_BROWSER_TEST_F(OOPBrowserTest, MAYBE_Basic) {
// Create a div to ensure we don't use solid color quads.
GURL url = GURL(
"data:text/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