Commit f9491126 authored by Adithya Srinivasan's avatar Adithya Srinivasan Committed by Commit Bot

Disable WebRtcEventlogHostTest.TwoPeerConnectionsTest on Win

Bug: 750708
Change-Id: I283ee164229f46c15e0fd9db95aa1347383a6405
TBR: ivoc
Reviewed-on: https://chromium-review.googlesource.com/594429Reviewed-by: default avatarAdithya Srinivasan <adithyas@chromium.org>
Commit-Queue: Adithya Srinivasan <adithyas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#490787}
parent eafaa52e
......@@ -11,6 +11,7 @@
#include "base/strings/string_number_conversions.h"
#include "base/task_scheduler/post_task.h"
#include "base/task_scheduler/task_traits.h"
#include "build/build_config.h"
#include "content/browser/renderer_host/render_process_host_impl.h"
#include "content/common/media/peer_connection_tracker_messages.h"
#include "content/public/browser/browser_context.h"
......@@ -141,7 +142,15 @@ TEST_F(WebRtcEventlogHostTest, OnePeerConnectionTest) {
// two PeerConnections. It is expected that two IPC messages will be sent for
// each of the Start and Stop calls, and that a file is created for both
// PeerConnections.
TEST_F(WebRtcEventlogHostTest, TwoPeerConnectionsTest) {
// Test is flaky on Windpws: https://crbug.com/750708
#if defined(OS_WIN)
#define MAYBE_TwoPeerConnectionsTest DISABLED_TwoPeerConnectionsTest
#else
#define MAYBE_TwoPeerConnectionsTest TwoPeerConnectionsTest
#endif
TEST_F(WebRtcEventlogHostTest, MAYBE_TwoPeerConnectionsTest) {
const int kTestPeerConnectionId1 = 123;
const int kTestPeerConnectionId2 = 321;
mock_render_process_host_->sink().ClearMessages();
......
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