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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/api/peerconnection_unittest.cc
diff --git a/webrtc/api/peerconnection_unittest.cc b/webrtc/api/peerconnection_unittest.cc
index 6400655f9c4520177286ce3b9dc092717b473d1a..dcffd1330f11cd483b1fc19d33f9775dc18d0a96 100644
--- a/webrtc/api/peerconnection_unittest.cc
+++ b/webrtc/api/peerconnection_unittest.cc
@@ -1778,7 +1778,14 @@ TEST_F(P2PTestConductor, AddDataChannelAfterRenegotiation) {
// This test sets up a Jsep call with SCTP DataChannel and verifies the
// negotiation is completed without error.
#ifdef HAVE_SCTP
-TEST_F(P2PTestConductor, CreateOfferWithSctpDataChannel) {
+// Disabled on Win dbg: https://bugs.chromium.org/p/webrtc/issues/detail?id=5659
+#if defined(WIN) && defined(_DEBUG)
+#define MAYBE_CreateOfferWithSctpDataChannel \
+ DISABLED_CreateOfferWithSctpDataChannel
+#else
+#define MAYBE_CreateOfferWithSctpDataChannel CreateOfferWithSctpDataChannel
+#endif
+TEST_F(P2PTestConductor, MAYBE_CreateOfferWithSctpDataChannel) {
MAYBE_SKIP_TEST(rtc::SSLStreamAdapter::HaveDtlsSrtp);
FakeConstraints constraints;
constraints.SetMandatory(
« 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