From 8e775e16eba1c3d2983f24d3fcf59400f79b9783 Mon Sep 17 00:00:00 2001 From: aleloi Date: Thu, 26 Jan 2017 01:06:05 -0800 Subject: [PATCH] Disabled two iOS tests due to bot breakage. Affected tests are AudioDeviceTest.RunPlayoutWithFileAsSource and AudioDeviceTest.StartStopRecording NOTRY=True TBR=henrika@webrtc.org BUG=7056 Review-Url: https://codereview.webrtc.org/2652423002 Cr-Commit-Position: refs/heads/master@{#16286} --- .../modules/audio_device/ios/audio_device_unittest_ios.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/audio_device/ios/audio_device_unittest_ios.cc b/webrtc/modules/audio_device/ios/audio_device_unittest_ios.cc index 1b7ff5780f..dd284c12f8 100644 --- a/webrtc/modules/audio_device/ios/audio_device_unittest_ios.cc +++ b/webrtc/modules/audio_device/ios/audio_device_unittest_ios.cc @@ -598,7 +598,8 @@ TEST_F(AudioDeviceTest, DISABLED_StartStopPlayout) { // Tests that recording can be initiated, started and stopped. No audio callback // is registered in this test. -TEST_F(AudioDeviceTest, StartStopRecording) { +// Disabled due to failure: bugs.webrtc.org/7056 +TEST_F(AudioDeviceTest, DISABLED_StartStopRecording) { StartRecording(); StopRecording(); StartRecording(); @@ -733,7 +734,8 @@ TEST_F(AudioDeviceTest, StartPlayoutAndRecordingVerifyCallbacks) { // Start playout and read audio from an external PCM file when the audio layer // asks for data to play out. Real audio is played out in this test but it does // not contain any explicit verification that the audio quality is perfect. -TEST_F(AudioDeviceTest, RunPlayoutWithFileAsSource) { +// Disabled due to failure: bugs.webrtc.org/7056 +TEST_F(AudioDeviceTest, DISABLED_RunPlayoutWithFileAsSource) { // TODO(henrika): extend test when mono output is supported. EXPECT_EQ(1, playout_channels()); NiceMock mock(kPlayout);