Commit a4dc1eff authored by Patrik Höglund's avatar Patrik Höglund Committed by Commit Bot

Disable AudioOutputDeviceTest.VerifyDataFlow.

Flakily fails like this:
../../media/audio/audio_output_device_unittest.cc:411: Failure
Actual function call count doesn't match EXPECT_CALL(env.callback,
    Render(kDelay, env.time_stamp, kFramesSkipped, NotNull()))...
         Expected: to be called once
           Actual: never called - unsatisfied and active

See for instance
https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/
    Linux%20Chromium%20OS%20ASan%20LSan%20Tests%20%281%29/30025

Tbr: olka@chromium.org
Bug: 903696
Change-Id: I621eab844322e47a36cfa55ddf6c09c04d825266
Reviewed-on: https://chromium-review.googlesource.com/c/1328987
Commit-Queue: Patrik Höglund <phoglund@chromium.org>
Reviewed-by: default avatarPatrik Höglund <phoglund@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606811}
parent 6fb9951c
......@@ -371,7 +371,13 @@ struct TestEnvironment {
} // namespace
TEST_F(AudioOutputDeviceTest, VerifyDataFlow) {
#if defined(ADDRESS_SANITIZER)
// TODO(crbug.com/903696): Flaky, at least on CrOS ASAN.
#define MAYBE_VerifyDataFlow DISABLED_VerifyDataFlow
#else
#define MAYBE_VerifyDataFlow VerifyDataFlow
#endif
TEST_F(AudioOutputDeviceTest, MAYBE_VerifyDataFlow) {
// The test fixture isn't used in this test, but we still have to clean up
// after it.
StopAudioDevice();
......
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