Commit 384e09bd authored by Wez's avatar Wez Committed by Commit Bot

Disable flaky ThreadConditionTest.WaitReportsBlockingCall test.

This test often flakes on its first run in a batch, with each call
expectation satisfied more than once.

Bug: 897550, 879806
Change-Id: I2b7b130e5fd2fc8abf6aa15fbfd417041da0420f
Reviewed-on: https://chromium-review.googlesource.com/c/1293178Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#601645}
parent 094b89d6
......@@ -41,7 +41,9 @@ class ThreadConditionTest : public testing::Test {
ThreadCondition condition_;
};
TEST_F(ThreadConditionTest, WaitReportsBlockingCall) {
// TODO(https://crbug.com/897550): Test often flakes on its first run, only
// passing when retried by the TestLauncher.
TEST_F(ThreadConditionTest, DISABLED_WaitReportsBlockingCall) {
EXPECT_CALL(observer_, BlockingStarted(base::BlockingType::MAY_BLOCK));
EXPECT_CALL(observer_, BlockingEnded());
......
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