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

Side by Side Diff: webrtc/video/end_to_end_tests.cc

Issue 1703963002: Disabled the test EndToEndTest RestartingSendStreamPreservesRtpState due to the test being flaky. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include <algorithm> 10 #include <algorithm>
(...skipping 3130 matching lines...) Expand 10 before | Expand all | Expand 10 after
3141 << "Timed out waiting for all SSRCs to send packets."; 3141 << "Timed out waiting for all SSRCs to send packets.";
3142 } 3142 }
3143 3143
3144 send_transport.StopSending(); 3144 send_transport.StopSending();
3145 receive_transport.StopSending(); 3145 receive_transport.StopSending();
3146 3146
3147 Stop(); 3147 Stop();
3148 DestroyStreams(); 3148 DestroyStreams();
3149 } 3149 }
3150 3150
3151 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpState) { 3151 TEST_F(EndToEndTest, DISABLED_RestartingSendStreamPreservesRtpState) {
3152 TestRtpStatePreservation(false); 3152 TestRtpStatePreservation(false);
3153 } 3153 }
3154 3154
3155 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) { 3155 TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) {
3156 TestRtpStatePreservation(true); 3156 TestRtpStatePreservation(true);
3157 } 3157 }
3158 3158
3159 TEST_F(EndToEndTest, RespectsNetworkState) { 3159 TEST_F(EndToEndTest, RespectsNetworkState) {
3160 // TODO(pbos): Remove accepted downtime packets etc. when signaling network 3160 // TODO(pbos): Remove accepted downtime packets etc. when signaling network
3161 // down blocks until no more packets will be sent. 3161 // down blocks until no more packets will be sent.
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
3532 private: 3532 private:
3533 bool video_observed_; 3533 bool video_observed_;
3534 bool audio_observed_; 3534 bool audio_observed_;
3535 SequenceNumberUnwrapper unwrapper_; 3535 SequenceNumberUnwrapper unwrapper_;
3536 std::set<int64_t> received_packet_ids_; 3536 std::set<int64_t> received_packet_ids_;
3537 } test; 3537 } test;
3538 3538
3539 RunBaseTest(&test); 3539 RunBaseTest(&test);
3540 } 3540 }
3541 } // namespace webrtc 3541 } // namespace webrtc
OLDNEW
« 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