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

Side by Side Diff: webrtc/api/peerconnection_unittest.cc

Issue 1809103002: Disable tests due to issue 5659. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1771 ASSERT_TRUE(receiving_client()->data_channel() != nullptr); 1771 ASSERT_TRUE(receiving_client()->data_channel() != nullptr);
1772 EXPECT_TRUE_WAIT(initializing_client()->data_observer()->IsOpen(), 1772 EXPECT_TRUE_WAIT(initializing_client()->data_observer()->IsOpen(),
1773 kMaxWaitMs); 1773 kMaxWaitMs);
1774 EXPECT_TRUE_WAIT(receiving_client()->data_observer()->IsOpen(), 1774 EXPECT_TRUE_WAIT(receiving_client()->data_observer()->IsOpen(),
1775 kMaxWaitMs); 1775 kMaxWaitMs);
1776 } 1776 }
1777 1777
1778 // This test sets up a Jsep call with SCTP DataChannel and verifies the 1778 // This test sets up a Jsep call with SCTP DataChannel and verifies the
1779 // negotiation is completed without error. 1779 // negotiation is completed without error.
1780 #ifdef HAVE_SCTP 1780 #ifdef HAVE_SCTP
1781 TEST_F(P2PTestConductor, CreateOfferWithSctpDataChannel) { 1781 // Disabled on Win dbg: https://bugs.chromium.org/p/webrtc/issues/detail?id=5659
1782 #if defined(WIN) && defined(_DEBUG)
1783 #define MAYBE_CreateOfferWithSctpDataChannel \
1784 DISABLED_CreateOfferWithSctpDataChannel
1785 #else
1786 #define MAYBE_CreateOfferWithSctpDataChannel CreateOfferWithSctpDataChannel
1787 #endif
1788 TEST_F(P2PTestConductor, MAYBE_CreateOfferWithSctpDataChannel) {
1782 MAYBE_SKIP_TEST(rtc::SSLStreamAdapter::HaveDtlsSrtp); 1789 MAYBE_SKIP_TEST(rtc::SSLStreamAdapter::HaveDtlsSrtp);
1783 FakeConstraints constraints; 1790 FakeConstraints constraints;
1784 constraints.SetMandatory( 1791 constraints.SetMandatory(
1785 MediaConstraintsInterface::kEnableDtlsSrtp, true); 1792 MediaConstraintsInterface::kEnableDtlsSrtp, true);
1786 ASSERT_TRUE(CreateTestClients(&constraints, &constraints)); 1793 ASSERT_TRUE(CreateTestClients(&constraints, &constraints));
1787 initializing_client()->CreateDataChannel(); 1794 initializing_client()->CreateDataChannel();
1788 initializing_client()->Negotiate(false, false); 1795 initializing_client()->Negotiate(false, false);
1789 } 1796 }
1790 #endif 1797 #endif
1791 1798
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
2087 server.urls.push_back("turn:hostname2"); 2094 server.urls.push_back("turn:hostname2");
2088 servers.push_back(server); 2095 servers.push_back(server);
2089 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_)); 2096 EXPECT_TRUE(webrtc::ParseIceServers(servers, &stun_servers_, &turn_servers_));
2090 EXPECT_EQ(2U, turn_servers_.size()); 2097 EXPECT_EQ(2U, turn_servers_.size());
2091 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority); 2098 EXPECT_NE(turn_servers_[0].priority, turn_servers_[1].priority);
2092 } 2099 }
2093 2100
2094 #endif // if !defined(THREAD_SANITIZER) 2101 #endif // if !defined(THREAD_SANITIZER)
2095 2102
2096 } // namespace 2103 } // namespace
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/peerconnectioninterface_unittest.cc » ('j') | webrtc/api/peerconnectioninterface_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698