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

Unified Diff: base/debug/trace_event_unittest.cc

Issue 410843003: Disable all the tests that are flaking more than 5% on Windows builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | base/time/time_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/trace_event_unittest.cc
diff --git a/base/debug/trace_event_unittest.cc b/base/debug/trace_event_unittest.cc
index 3f41706e49e478f1205107bdaa15cfebb0d427b4..6092141dabbe61e6363835c947434af0d341f688 100644
--- a/base/debug/trace_event_unittest.cc
+++ b/base/debug/trace_event_unittest.cc
@@ -2415,7 +2415,13 @@ TEST_F(TraceEventCallbackTest, TraceEventCallbackAndRecordingDuration) {
VerifyCollectedEvent(5, TRACE_EVENT_PHASE_END, "callback", "duration1");
}
-TEST_F(TraceEventTestFixture, TraceBufferVectorReportFull) {
+#if defined(OS_WIN)
+// http://crbug.com/396403
+#define MAYBE_TraceBufferVectorReportFull DISABLED_TraceBufferVectorReportFull
+#else
+#define MAYBE_TraceBufferVectorReportFull TraceBufferVectorReportFull
+#endif
+TEST_F(TraceEventTestFixture, MAYBE_TraceBufferVectorReportFull) {
TraceLog* trace_log = TraceLog::GetInstance();
trace_log->SetEnabled(CategoryFilter("*"),
base::debug::TraceLog::RECORDING_MODE,
« no previous file with comments | « no previous file | base/time/time_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698