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

Unified Diff: base/trace_event/memory_dump_scheduler_unittest.cc

Issue 2940693002: Disable MemoryDumpSchedulerTest.MultipleTriggers on Linux (Closed)
Patch Set: Created 3 years, 6 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: base/trace_event/memory_dump_scheduler_unittest.cc
diff --git a/base/trace_event/memory_dump_scheduler_unittest.cc b/base/trace_event/memory_dump_scheduler_unittest.cc
index 17fb74361f5f47a4889a5c1cf5ead8598067b53a..0a5fb89f4e218ff2e33fdcc20624c9c4acfdab8a 100644
--- a/base/trace_event/memory_dump_scheduler_unittest.cc
+++ b/base/trace_event/memory_dump_scheduler_unittest.cc
@@ -88,7 +88,13 @@ TEST_F(MemoryDumpSchedulerTest, SingleTrigger) {
scheduler_->Stop();
}
-TEST_F(MemoryDumpSchedulerTest, MultipleTriggers) {
+// Flaky on Linux. http://crbug.com/732861
+#if defined(OS_LINUX)
+#define MAYBE_MultipleTriggers DISABLED_MultipleTriggers
+#else
+#define MAYBE_MultipleTriggers MultipleTriggers
+#endif
+TEST_F(MemoryDumpSchedulerTest, MAYBE_MultipleTriggers) {
const uint32_t kPeriodLightMs = 3;
const uint32_t kPeriodDetailedMs = 9;
WaitableEvent evt(WaitableEvent::ResetPolicy::MANUAL,
« 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