Commit 5cc1f4bb authored by alexclarke's avatar alexclarke Committed by Commit bot

Disable TestWithKeyboardMicChannel for android clang builds

Disabling this test will make a bot go green. See bug for details.

BUG=470499

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

Cr-Commit-Position: refs/heads/master@{#322144}
parent 9a9e0855
...@@ -492,7 +492,14 @@ TEST_F(MediaStreamAudioProcessorTest, TestStereoAudio) { ...@@ -492,7 +492,14 @@ TEST_F(MediaStreamAudioProcessorTest, TestStereoAudio) {
audio_processor = NULL; audio_processor = NULL;
} }
TEST_F(MediaStreamAudioProcessorTest, TestWithKeyboardMicChannel) { // Disabled on android clang builds due to crbug.com/470499
#if defined(__clang__) && defined(OS_ANDROID)
#define MAYBE_TestWithKeyboardMicChannel DISABLED_TestWithKeyboardMicChannel
#else
#define MAYBE_TestWithKeyboardMicChannel TestWithKeyboardMicChannel
#endif
TEST_F(MediaStreamAudioProcessorTest, MAYBE_TestWithKeyboardMicChannel) {
MockMediaConstraintFactory constraint_factory; MockMediaConstraintFactory constraint_factory;
constraint_factory.AddMandatory( constraint_factory.AddMandatory(
MediaAudioConstraints::kGoogExperimentalNoiseSuppression, true); MediaAudioConstraints::kGoogExperimentalNoiseSuppression, true);
......
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