Commit 382f6d5b authored by Yuta Kitamura's avatar Yuta Kitamura Committed by Commit Bot

Disable MemoryTracingBrowserTest.TestBackgroundMemoryInfra on LSAN.

TBR=ssid@chromium.org

Bug: 808152
Change-Id: I50f6ef21551e59aa7aa92f21863b0b24cc2b56c3
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/897237Reviewed-by: default avatarYuta Kitamura <yutak@chromium.org>
Commit-Queue: Yuta Kitamura <yutak@chromium.org>
Cr-Commit-Position: refs/heads/master@{#533987}
parent 62beb0a0
...@@ -128,7 +128,14 @@ IN_PROC_BROWSER_TEST_F(MemoryTracingBrowserTest, DISABLED_TestMemoryInfra) { ...@@ -128,7 +128,14 @@ IN_PROC_BROWSER_TEST_F(MemoryTracingBrowserTest, DISABLED_TestMemoryInfra) {
base::trace_event::MemoryDumpLevelOfDetail::DETAILED, &json_events); base::trace_event::MemoryDumpLevelOfDetail::DETAILED, &json_events);
} }
IN_PROC_BROWSER_TEST_F(MemoryTracingBrowserTest, TestBackgroundMemoryInfra) { // crbug.com/808152: This test is flakily failing on LSAN.
#if defined(LEAK_SANITIZER)
#define MAYBE_TestBackgroundMemoryInfra DISABLED_TestBackgroundMemoryInfra
#else
#define MAYBE_TestBackgroundMemoryInfra TestBackgroundMemoryInfra
#endif
IN_PROC_BROWSER_TEST_F(MemoryTracingBrowserTest,
MAYBE_TestBackgroundMemoryInfra) {
// TODO(ssid): Test for dump success once the on start tracing done callback // TODO(ssid): Test for dump success once the on start tracing done callback
// is fixed to be called after enable tracing is acked by all processes, // is fixed to be called after enable tracing is acked by all processes,
// crbug.com/709524. The test still tests if dumping does not crash. // crbug.com/709524. The test still tests if dumping does not crash.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment