Commit be56080f authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

Disable TestConnectEndToEndWithRealSSL on Win

TBR=wjmaclean@chromium.org
NOTRY=true

Bug: 874491
Change-Id: Idda7c1bbd55468c33dc6bf2aaafceeb16eb699c5
Reviewed-on: https://chromium-review.googlesource.com/1176075Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#583284}
parent fa4abf22
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include "base/sys_byteorder.h" #include "base/sys_byteorder.h"
#include "base/threading/thread_task_runner_handle.h" #include "base/threading/thread_task_runner_handle.h"
#include "base/timer/mock_timer.h" #include "base/timer/mock_timer.h"
#include "build/build_config.h"
#include "components/cast_channel/cast_auth_util.h" #include "components/cast_channel/cast_auth_util.h"
#include "components/cast_channel/cast_framer.h" #include "components/cast_channel/cast_framer.h"
#include "components/cast_channel/cast_message_util.h" #include "components/cast_channel/cast_message_util.h"
...@@ -977,9 +978,16 @@ TEST_F(MockCastSocketTest, TestOpenChannelClosedSocket) { ...@@ -977,9 +978,16 @@ TEST_F(MockCastSocketTest, TestOpenChannelClosedSocket) {
base::Unretained(&handler_))); base::Unretained(&handler_)));
} }
// https://crbug.com/874491, flaky on Win
#if defined(OS_WIN)
#define MAYBE_TestConnectEndToEndWithRealSSL \
DISABLED_TestConnectEndToEndWithRealSSL
#else
#define MAYBE_TestConnectEndToEndWithRealSSL TestConnectEndToEndWithRealSSL
#endif
// Tests connecting through an actual non-mocked CastTransport object and // Tests connecting through an actual non-mocked CastTransport object and
// non-mocked SSLClientSocket, testing the components in integration. // non-mocked SSLClientSocket, testing the components in integration.
TEST_F(SslCastSocketTest, TestConnectEndToEndWithRealSSL) { TEST_F(SslCastSocketTest, MAYBE_TestConnectEndToEndWithRealSSL) {
CreateSockets(); CreateSockets();
ConnectSockets(); ConnectSockets();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment