Disable PhysicalSocketTest.TestUdpReadyToSendIPv4 for TSAN2

BUG=webrtc:3498
R=henrik.lundin@webrtc.org
TBR=tommi

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6528 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
aluebs@webrtc.org 2014-06-24 08:35:39 +00:00
parent 71dffb76dc
commit 9a4f651037

View File

@ -147,10 +147,16 @@ TEST_F(PhysicalSocketTest, TestUdpIPv6) {
SocketTest::TestUdpIPv6();
}
// Disable for TSan v2, see
// https://code.google.com/p/webrtc/issues/detail?id=3498 for details.
#if !defined(THREAD_SANITIZER)
TEST_F(PhysicalSocketTest, TestUdpReadyToSendIPv4) {
SocketTest::TestUdpReadyToSendIPv4();
}
#endif // if !defined(THREAD_SANITIZER)
TEST_F(PhysicalSocketTest, TestUdpReadyToSendIPv6) {
SocketTest::TestUdpReadyToSendIPv6();
}