From 5d32f432197d35d87c1d822a79291bd108256b66 Mon Sep 17 00:00:00 2001 From: "tommi@webrtc.org" Date: Thu, 5 Feb 2015 06:25:35 +0000 Subject: [PATCH] Disable CondVarTest.InitFunctionsWork. The order of Sleep/Wake calls doesn't seem to be guaranteed, so this test is flaky. BUG=4262 TBR=bjornv@webrtc.org Review URL: https://webrtc-codereview.appspot.com/37189004 Cr-Commit-Position: refs/heads/master@{#8247} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8247 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/system_wrappers/source/condition_variable_unittest.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webrtc/system_wrappers/source/condition_variable_unittest.cc b/webrtc/system_wrappers/source/condition_variable_unittest.cc index b551478231..9b8a6dd858 100644 --- a/webrtc/system_wrappers/source/condition_variable_unittest.cc +++ b/webrtc/system_wrappers/source/condition_variable_unittest.cc @@ -171,7 +171,8 @@ class CondVarTest : public ::testing::Test { // The SetUp and TearDown functions use condition variables. // This test verifies those pieces in isolation. -TEST_F(CondVarTest, InitFunctionsWork) { +// Disabled due to flakiness. See bug 4262 for details. +TEST_F(CondVarTest, DISABLED_InitFunctionsWork) { // All relevant asserts are in the SetUp and TearDown functions. }