Commit 4c85ed87 authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

[sheriff] Disable X11TopmostWindowFinderTest.NonRectangularNullShape on Linux

TBR=eirage@chromium.org
NOTRY=true

Bug: 955316
Change-Id: I44db3fb85a0c84d31f745aa238e4e290844ca8e1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2463329Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#815614}
parent 136b5bec
......@@ -11,6 +11,7 @@
#include <vector>
#include "base/stl_util.h"
#include "build/build_config.h"
#include "third_party/skia/include/core/SkRect.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
......@@ -378,7 +379,13 @@ TEST_F(X11TopmostWindowFinderTest, NonRectangularEmptyShape) {
}
// Test that setting a Null shape removes the shape.
TEST_F(X11TopmostWindowFinderTest, NonRectangularNullShape) {
// crbug.com/955316: flaky on Linux
#if defined(OS_LINUX)
#define MAYBE_NonRectangularNullShape DISABLED_NonRectangularNullShape
#else
#define MAYBE_NonRectangularNullShape NonRectangularNullShape
#endif
TEST_F(X11TopmostWindowFinderTest, MAYBE_NonRectangularNullShape) {
if (!ui::IsShapeExtensionAvailable())
return;
......
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