| Index: webrtc/api/peerconnection_unittest.cc
|
| diff --git a/webrtc/api/peerconnection_unittest.cc b/webrtc/api/peerconnection_unittest.cc
|
| index a43d075d57416231cbf5765baba5f516763d3b0a..788a98181e6c755a4e0197159d2b554a07f1e895 100644
|
| --- a/webrtc/api/peerconnection_unittest.cc
|
| +++ b/webrtc/api/peerconnection_unittest.cc
|
| @@ -1436,7 +1436,8 @@ TEST_F(P2PTestConductor, GetBytesSentStats) {
|
| }
|
|
|
| // Test that DTLS 1.0 is used if both sides only support DTLS 1.0.
|
| -TEST_F(P2PTestConductor, GetDtls12None) {
|
| +// Disabled due to new BoringSSLL version, see webrtc:5634
|
| +TEST_F(P2PTestConductor, DISABLED_GetDtls12None) {
|
| PeerConnectionFactory::Options init_options;
|
| init_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
|
| PeerConnectionFactory::Options recv_options;
|
| @@ -1499,7 +1500,8 @@ TEST_F(P2PTestConductor, GetDtls12Both) {
|
|
|
| // Test that DTLS 1.0 is used if the initator supports DTLS 1.2 and the
|
| // received supports 1.0.
|
| -TEST_F(P2PTestConductor, GetDtls12Init) {
|
| +// Disabled due to new BoringSSLL version, see webrtc:5634
|
| +TEST_F(P2PTestConductor, DISABLED_GetDtls12Init) {
|
| PeerConnectionFactory::Options init_options;
|
| init_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
|
| PeerConnectionFactory::Options recv_options;
|
| @@ -1531,7 +1533,8 @@ TEST_F(P2PTestConductor, GetDtls12Init) {
|
|
|
| // Test that DTLS 1.0 is used if the initator supports DTLS 1.0 and the
|
| // received supports 1.2.
|
| -TEST_F(P2PTestConductor, GetDtls12Recv) {
|
| +// Disabled due to new BoringSSLL version, see webrtc:5634
|
| +TEST_F(P2PTestConductor, DISABLED_GetDtls12Recv) {
|
| PeerConnectionFactory::Options init_options;
|
| init_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
|
| PeerConnectionFactory::Options recv_options;
|
|
|