Commit 9a396edd authored by Marina Ciocea's avatar Marina Ciocea Committed by Commit Bot

Disable flaky test AudioServiceOutputDeviceTest.VerifyDataFlow on...

Disable flaky test AudioServiceOutputDeviceTest.VerifyDataFlow on chromium.memory/Linux Chromium OS ASan LSan.

TBR=olka@chromium.org

Bug: 889845
Change-Id: Ia567217a45085fbc190985504fd29d42b162a16d
Reviewed-on: https://chromium-review.googlesource.com/1249264Reviewed-by: default avatarMarina Ciocea <marinaciocea@chromium.org>
Commit-Queue: Marina Ciocea <marinaciocea@chromium.org>
Cr-Commit-Position: refs/heads/master@{#594693}
parent 11a17dd7
......@@ -182,7 +182,13 @@ TEST_F(AudioServiceOutputDeviceTest, CreatePlayPause) {
task_env_.RunUntilIdle();
}
TEST_F(AudioServiceOutputDeviceTest, VerifyDataFlow) {
// Flaky on Linux Chromium OS ASan LSan (https://crbug.com/889845)
#if defined(OS_CHROMEOS) && defined(ADDRESS_SANITIZER)
#define MAYBE_VerifyDataFlow DISABLED_VerifyDataFlow
#else
#define MAYBE_VerifyDataFlow VerifyDataFlow
#endif
TEST_F(AudioServiceOutputDeviceTest, MAYBE_VerifyDataFlow) {
auto params(media::AudioParameters::UnavailableDeviceParams());
params.set_frames_per_buffer(kFrames);
ASSERT_EQ(2, params.channels());
......
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