Commit ede7651e authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

Disable MusDemoTest.CheckMusDemoDraws on linux

TBR=thestig@chromium.org
NOTRY=true

Bug: 836248
Change-Id: I3664a670dd4b794b4a5a595988542336a8d9957b
Reviewed-on: https://chromium-review.googlesource.com/1025643Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#553122}
parent 6219b0ca
......@@ -8,6 +8,7 @@
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/test/scoped_feature_list.h"
#include "build/build_config.h"
#include "services/service_manager/public/cpp/service_test.h"
#include "services/ui/public/interfaces/constants.mojom.h"
#include "services/ui/public/interfaces/window_server_test.mojom.h"
......@@ -48,7 +49,13 @@ class MusDemoTest : public service_manager::test::ServiceTest {
} // namespace
TEST_F(MusDemoTest, CheckMusDemoDraws) {
// Timeout on linux: https://crbug.com/836248
#if defined(OS_LINUX)
#define MAYBE_CheckMusDemoDraws DISABLED_CheckMusDemoDraws
#else
#define MAYBE_CheckMusDemoDraws CheckMusDemoDraws
#endif
TEST_F(MusDemoTest, MAYBE_CheckMusDemoDraws) {
connector()->StartService("mus_demo");
::ui::mojom::WindowServerTestPtr test_interface;
......
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