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

Unified Diff: webrtc/video/end_to_end_tests.cc

Issue 2027573002: Disabled RestartingSendStreamPreservesRtpStatesWithRtx on Mac due to flakiness. (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 2dea36f1460d9b81c6e89f2acc805a510f0a091e..36d1cd184a9b495c891945d7e915ae0e62fd0b7e 100644
--- a/webrtc/video/end_to_end_tests.cc
+++ b/webrtc/video/end_to_end_tests.cc
@@ -3080,7 +3080,14 @@ TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpState) {
TestRtpStatePreservation(false);
}
-TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) {
+#if defined(WEBRTC_MAC)
+#define MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx \
+ DISABLED_RestartingSendStreamPreservesRtpStatesWithRtx
+#else
+#define MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx \
+ RestartingSendStreamPreservesRtpStatesWithRtx
+#endif
+TEST_F(EndToEndTest, MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx) {
TestRtpStatePreservation(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