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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user