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

Side by Side Diff: webrtc/media/engine/webrtcvideoengine2_unittest.cc

Issue 2068983006: Disable WebRtcVideoChannel2BaseTest.AddRemoveCapturer because it is flaky (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 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) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 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 10
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 840
841 WEBRTC_BASE_TEST(SetSendSsrc); 841 WEBRTC_BASE_TEST(SetSendSsrc);
842 WEBRTC_BASE_TEST(SetSendSsrcAfterSetCodecs); 842 WEBRTC_BASE_TEST(SetSendSsrcAfterSetCodecs);
843 843
844 WEBRTC_BASE_TEST(SetSink); 844 WEBRTC_BASE_TEST(SetSink);
845 845
846 WEBRTC_BASE_TEST(AddRemoveSendStreams); 846 WEBRTC_BASE_TEST(AddRemoveSendStreams);
847 847
848 WEBRTC_BASE_TEST(SimulateConference); 848 WEBRTC_BASE_TEST(SimulateConference);
849 849
850 WEBRTC_BASE_TEST(AddRemoveCapturer); 850 WEBRTC_DISABLED_BASE_TEST(AddRemoveCapturer);
851 851
852 WEBRTC_BASE_TEST(RemoveCapturerWithoutAdd); 852 WEBRTC_BASE_TEST(RemoveCapturerWithoutAdd);
853 853
854 WEBRTC_BASE_TEST(AddRemoveCapturerMultipleSources); 854 WEBRTC_BASE_TEST(AddRemoveCapturerMultipleSources);
855 855
856 // TODO(pbos): Figure out why this fails so often. 856 // TODO(pbos): Figure out why this fails so often.
857 WEBRTC_DISABLED_BASE_TEST(HighAspectHighHeightCapturer); 857 WEBRTC_DISABLED_BASE_TEST(HighAspectHighHeightCapturer);
858 858
859 WEBRTC_BASE_TEST(RejectEmptyStreamParams); 859 WEBRTC_BASE_TEST(RejectEmptyStreamParams);
860 860
(...skipping 2893 matching lines...) Expand 10 before | Expand all | Expand 10 after
3754 } 3754 }
3755 3755
3756 // Test that we normalize send codec format size in simulcast. 3756 // Test that we normalize send codec format size in simulcast.
3757 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { 3757 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) {
3758 cricket::VideoCodec codec(kVp8Codec270p); 3758 cricket::VideoCodec codec(kVp8Codec270p);
3759 codec.width += 1; 3759 codec.width += 1;
3760 codec.height += 1; 3760 codec.height += 1;
3761 VerifySimulcastSettings(codec, 2, 2); 3761 VerifySimulcastSettings(codec, 2, 2);
3762 } 3762 }
3763 } // namespace cricket 3763 } // namespace cricket
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