Disable AudioCodingModuleTest.TestPacketLossStereo for iOS.

It failed twice in succession after https://codereview.webrtc.org/2752233002.

TBR=ossu@webrtc.org
NOTRY=True
BUG=webrtc:7057

Review-Url: https://codereview.webrtc.org/2778983003
Cr-Commit-Position: refs/heads/master@{#17410}
This commit is contained in:
aleloi
2017-03-28 02:28:08 -07:00
committed by Commit bot
parent abb84b8128
commit b1a897680d

View File

@ -159,7 +159,12 @@ TEST(AudioCodingModuleTest, TestPacketLossBurst) {
Trace::ReturnTrace();
}
TEST(AudioCodingModuleTest, TestPacketLossStereo) {
// Disabled on ios as flake, see https://crbug.com/webrtc/7057
#if defined(WEBRTC_IOS)
TEST(AudioCodingModuleTest, DISABLED_TestPacketLossStereo) {
#else
TEST(AudioCodingModuleTest, TestPacketLossStereo) {
#endif
Trace::CreateTrace();
Trace::SetTraceFile((webrtc::test::OutputPath() +
"acm_packetloss_trace.txt").c_str());