Disable some flaky libjingle base tests.

ThreadTest.Main and VirtualSocketServerTest.delay_v6

Example:
http://build.chromium.org/p/tryserver.webrtc/builders/win/builds/1234

TBR=wu@webrtc.org
BUG=2409

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4838 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2013-09-25 02:33:50 +00:00
parent 26e02f0ee4
commit 2f240b43f5
2 changed files with 4 additions and 2 deletions

View File

@ -160,7 +160,8 @@ class Functor2 {
};
TEST(ThreadTest, Main) {
// See: https://code.google.com/p/webrtc/issues/detail?id=2409
TEST(ThreadTest, DISABLED_Main) {
const SocketAddress addr("127.0.0.1", 0);
// Create the messaging client on its own thread.

View File

@ -863,7 +863,8 @@ TEST_F(VirtualSocketServerTest, delay_v4) {
DelayTest(ipv4_test_addr);
}
TEST_F(VirtualSocketServerTest, delay_v6) {
// See: https://code.google.com/p/webrtc/issues/detail?id=2409
TEST_F(VirtualSocketServerTest, DISABLED_delay_v6) {
SocketAddress ipv6_test_addr(IPAddress(in6addr_any), 1000);
DelayTest(ipv6_test_addr);
}