Index: webrtc/api/peerconnection_unittest.cc |
diff --git a/webrtc/api/peerconnection_unittest.cc b/webrtc/api/peerconnection_unittest.cc |
index dcffd1330f11cd483b1fc19d33f9775dc18d0a96..b30fd06cf160cb60a0f8524dfde184154e9343dd 100644 |
--- a/webrtc/api/peerconnection_unittest.cc |
+++ b/webrtc/api/peerconnection_unittest.cc |
@@ -1779,7 +1779,7 @@ TEST_F(P2PTestConductor, AddDataChannelAfterRenegotiation) { |
// negotiation is completed without error. |
#ifdef HAVE_SCTP |
// Disabled on Win dbg: https://bugs.chromium.org/p/webrtc/issues/detail?id=5659 |
-#if defined(WIN) && defined(_DEBUG) |
+#if defined(WIN) && !defined(NDEBUG) |
kjellander_webrtc
2016/03/17 20:52:34
Why inverse the NDEBUG check instead of _DEBUG?
B
kjellander_webrtc
2016/03/17 20:52:34
Use WEBRTC_WIN instead of WIN. Applies to whole CL
stefan-webrtc
2016/03/17 21:07:15
The previous CL didn't work, as The previous CL di
kjellander_webrtc
2016/03/18 04:49:10
I'm sorry you had to waste so much time on this. I
stefan-webrtc
2016/03/18 08:07:36
Going for WEBRTC_WIN and _DEBUG.
|
#define MAYBE_CreateOfferWithSctpDataChannel \ |
DISABLED_CreateOfferWithSctpDataChannel |
#else |