Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Unified Diff: webrtc/pc/currentspeakermonitor_unittest.cc

Issue 2717993002: Disable flaky tests on iOS (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/audio_coding/test/target_delay_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/currentspeakermonitor_unittest.cc
diff --git a/webrtc/pc/currentspeakermonitor_unittest.cc b/webrtc/pc/currentspeakermonitor_unittest.cc
index 85e4a7d1d78a49dbe0a21a200e39da24e2954c1c..a71f72ed8b040603993b0db2dfff6cfa5414bcbe 100644
--- a/webrtc/pc/currentspeakermonitor_unittest.cc
+++ b/webrtc/pc/currentspeakermonitor_unittest.cc
@@ -122,7 +122,13 @@ TEST_F(CurrentSpeakerMonitorTest, DISABLED_RapidSpeakerChange) {
EXPECT_EQ(num_changes_, 1);
}
-TEST_F(CurrentSpeakerMonitorTest, SpeakerChange) {
+// Flaky on iOS: webrtc:7057.
+#if defined(WEBRTC_IOS)
+#define MAYBE_SpeakerChange DISABLED_SpeakerChange
+#else
+#define MAYBE_SpeakerChange SpeakerChange
+#endif
+TEST_F(CurrentSpeakerMonitorTest, MAYBE_SpeakerChange) {
AudioInfo info;
InitAudioInfo(&info, 0, 0);
« no previous file with comments | « webrtc/modules/audio_coding/test/target_delay_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698