Limit disabling of PeerConnectionEndToEndTest.Call to Windows

The test seems to be flaky only on Windows.

BUG=4464
TBR=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/44829004

Cr-Commit-Position: refs/heads/master@{#8835}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8835 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org
2015-03-23 19:47:53 +00:00
parent 64eb2ff0b9
commit 0b44b58a3c

View File

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