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}
This commit is contained in:
aleloi 2017-01-26 01:06:05 -08:00 committed by Commit bot
parent 4c4fdeb199
commit 8e775e16eb

View File

@ -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<MockAudioTransportIOS> mock(kPlayout);