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

Unified Diff: webrtc/video/end_to_end_tests.cc

Issue 2016933002: Disable CallReportsRttForSender on Mac. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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: webrtc/video/end_to_end_tests.cc
diff --git a/webrtc/video/end_to_end_tests.cc b/webrtc/video/end_to_end_tests.cc
index f785199bcc246ac6d476ace3df6f9079e58b6c58..d6c9ec886eae6dabfa876fa2182a940f65a0ed5a 100644
--- a/webrtc/video/end_to_end_tests.cc
+++ b/webrtc/video/end_to_end_tests.cc
@@ -3243,7 +3243,13 @@ TEST_F(EndToEndTest, RespectsNetworkState) {
RunBaseTest(&test);
}
-TEST_F(EndToEndTest, CallReportsRttForSender) {
+// See: https://bugs.chromium.org/p/webrtc/issues/detail?id=5938
+#ifdef WEBRTC_MAC
+#define MAYBE_CallReportsRttForSender DISABLED_CallReportsRttForSender
+#else
+#define MAYBE_CallReportsRttForSender CallReportsRttForSender
+#endif
+TEST_F(EndToEndTest, MAYBE_CallReportsRttForSender) {
static const int kSendDelayMs = 30;
static const int kReceiveDelayMs = 70;
« 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