Re-enable the PostDelayed TaskQueue test on all platforms except Windows.

BUG=webrtc:6610

Review-Url: https://codereview.webrtc.org/2457763002
Cr-Commit-Position: refs/heads/master@{#14803}
This commit is contained in:
tommi
2016-10-27 09:04:17 -07:00
committed by Commit bot
parent 492ee28b73
commit 45d18eb034

View File

@ -91,7 +91,13 @@ TEST(TaskQueueTest, PostFromQueue) {
EXPECT_TRUE(event.Wait(1000));
}
TEST(TaskQueueTest, DISABLED_PostDelayed) {
// Currently flaky on Windows. See issue 6610.
#if defined(WEBRTC_WIN)
#define MAYBE_PostDelayed DISABLED_PostDelayed
#else
#define MAYBE_PostDelayed PostDelayed
#endif
TEST(TaskQueueTest, MAYBE_PostDelayed) {
static const char kQueueName[] = "PostDelayed";
TaskQueue queue(kQueueName);