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

Unified Diff: content/browser/webrtc/webrtc_audio_browsertest.cc

Issue 2945613002: Disable flaky WebRtcAudioBrowserTest.CanMakeVideoCallAndThenRenegotiateToAudio on Linux. (Closed)
Patch Set: Created 3 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/webrtc/webrtc_audio_browsertest.cc
diff --git a/content/browser/webrtc/webrtc_audio_browsertest.cc b/content/browser/webrtc/webrtc_audio_browsertest.cc
index 5b66e50b2a372dd4cf779db4965244eefa01aa75..dabe2f6de9d0e7eb638206acc768857761fd36dd 100644
--- a/content/browser/webrtc/webrtc_audio_browsertest.cc
+++ b/content/browser/webrtc/webrtc_audio_browsertest.cc
@@ -61,8 +61,16 @@ class MAYBE_WebRtcAudioBrowserTest : public WebRtcContentBrowserTestBase {
}
};
+// Flaky on Linux. http://crbug.com/733551
+#if defined(OS_LINUX)
+#define MAYBE_CanMakeVideoCallAndThenRenegotiateToAudio \
+ DISABLED_CanMakeVideoCallAndThenRenegotiateToAudio
+#else
+#define MAYBE_CanMakeVideoCallAndThenRenegotiateToAudio \
+ CanMakeVideoCallAndThenRenegotiateToAudio
+#endif
IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcAudioBrowserTest,
- CanMakeVideoCallAndThenRenegotiateToAudio) {
+ MAYBE_CanMakeVideoCallAndThenRenegotiateToAudio) {
MakeAudioDetectingPeerConnectionCall(
"callAndRenegotiateToAudio({audio: true, video:true}, {audio: true});");
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698