Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2052)

Unified Diff: webrtc/base/task_queue_unittest.cc

Issue 2457763002: Re-enable the PostDelayed TaskQueue test on all platforms except Windows. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/task_queue_unittest.cc
diff --git a/webrtc/base/task_queue_unittest.cc b/webrtc/base/task_queue_unittest.cc
index d0b7550657836276ecb6e45ac2f181c8eb8df5f6..3af337dfaf338eda1a2c9e2db927217fdfebaae7 100644
--- a/webrtc/base/task_queue_unittest.cc
+++ b/webrtc/base/task_queue_unittest.cc
@@ -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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698