Commit 3686570d authored by xdai's avatar xdai Committed by Commit bot

Disable AutoclickTest.DISABLED_SynthesizedMouseMovesIgnored test on official...

Disable AutoclickTest.DISABLED_SynthesizedMouseMovesIgnored test on official build since it has been failing for several days.

BUG=489896

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

Cr-Commit-Position: refs/heads/master@{#330705}
parent 72ff2bb4
......@@ -269,7 +269,13 @@ TEST_F(AutoclickTest, UserInputCancelsAutoclick) {
EXPECT_EQ(0u, events.size());
}
TEST_F(AutoclickTest, SynthesizedMouseMovesIgnored) {
// Fails on official cros trunk build. See crbug.com/489896.
#if defined(OFFICIAL_BUILD)
#define MAYBE_SynthesizedMouseMovesIgnored DISABLED_SynthesizedMouseMovesIgnored
#else
#define MAYBE_SynthesizedMouseMovesIgnored SynthesizedMouseMovesIgnored
#endif
TEST_F(AutoclickTest, MAYBE_SynthesizedMouseMovesIgnored) {
GetAutoclickController()->SetEnabled(true);
std::vector<ui::MouseEvent> events;
GetEventGenerator().MoveMouseTo(100, 100);
......
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