diff --git a/talk/app/webrtc/peerconnectionendtoend_unittest.cc b/talk/app/webrtc/peerconnectionendtoend_unittest.cc index c0fa5cefb..7da7cc813 100644 --- a/talk/app/webrtc/peerconnectionendtoend_unittest.cc +++ b/talk/app/webrtc/peerconnectionendtoend_unittest.cc @@ -272,8 +272,13 @@ class PeerConnectionEndToEndTest // https://code.google.com/p/webrtc/issues/detail?id=1205 for details. #if !defined(THREAD_SANITIZER) -// Disabled per issue 4464. -TEST_F(PeerConnectionEndToEndTest, DISABLED_Call) { +// Flaky on Windows. Disabled per issue 4464. +#ifdef WEBRTC_WIN +#define MAYBE_Call DISABLED_Call +#else +#define MAYBE_Call Call +#endif +TEST_F(PeerConnectionEndToEndTest, MAYBE_Call) { CreatePcs(); GetAndAddUserMedia(); Negotiate();