Disable AudioDeviceTest.StartStopRecording on iOS

BUG=webrtc:7888
TBR=kjellander

Review-Url: https://codereview.webrtc.org/2963283002
Cr-Commit-Position: refs/heads/master@{#18853}
This commit is contained in:
henrika 2017-06-30 05:08:40 -07:00 committed by Commit Bot
parent 96da0115d7
commit d76b75370c

View File

@ -602,7 +602,10 @@ 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) {
// Can sometimes fail when running on real devices: bugs.webrtc.org/7888.
TEST_F(AudioDeviceTest, DISABLED_StartStopRecording) {
StartRecording();
StopRecording();
StartRecording();
StopRecording();
}