| Index: webrtc/modules/audio_coding/acm2/audio_coding_module_unittest_oldapi.cc
|
| diff --git a/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest_oldapi.cc b/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest_oldapi.cc
|
| index eefe0a5420f2f802dbf75083f9c825d179da5ca7..55cb5726c18ec8c7cfc994380136778ebfc6877b 100644
|
| --- a/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest_oldapi.cc
|
| +++ b/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest_oldapi.cc
|
| @@ -309,6 +309,11 @@ TEST_F(AudioCodingModuleTestOldApi, VerifyOutputFrame) {
|
| EXPECT_EQ(kSampleRateHz, audio_frame.sample_rate_hz_);
|
| }
|
|
|
| +// The below test is temporarily disabled on Windows due to problems
|
| +// with clang debug builds.
|
| +// TODO(tommi): Re-enable when we've figured out what the problem is.
|
| +// http://crbug.com/615050
|
| +#if !defined(WEBRTC_WIN) && defined(__clang__) && !defined(NDEBUG)
|
| #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
|
| TEST_F(AudioCodingModuleTestOldApi, FailOnZeroDesiredFrequency) {
|
| AudioFrame audio_frame;
|
| @@ -317,6 +322,7 @@ TEST_F(AudioCodingModuleTestOldApi, FailOnZeroDesiredFrequency) {
|
| "dst_sample_rate_hz");
|
| }
|
| #endif
|
| +#endif
|
|
|
| // Checks that the transport callback is invoked once for each speech packet.
|
| // Also checks that the frame type is kAudioFrameSpeech.
|
|
|