| 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(
|
|
|