Commit b1a0e84a authored by Ben Kelly's avatar Ben Kelly Committed by Commit Bot

Disable ServiceWorkerTaskProviderBrowserTest.CreateTaskOffTheRecordProfile on asan for flaky leaks.

Bug: 1016901,925035
Change-Id: Iaec42b329c4b8a84011a999181ed4d89cf976c09
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1876491Reviewed-by: default avatarAhmed Fakhry <afakhry@chromium.org>
Commit-Queue: Ben Kelly <wanderview@chromium.org>
Cr-Commit-Position: refs/heads/master@{#708779}
parent 29a875e1
...@@ -198,8 +198,16 @@ IN_PROC_BROWSER_TEST_F(ServiceWorkerTaskProviderBrowserTest, ...@@ -198,8 +198,16 @@ IN_PROC_BROWSER_TEST_F(ServiceWorkerTaskProviderBrowserTest,
// If the profile is off the record, the ServiceWorkerTaskProvider can still // If the profile is off the record, the ServiceWorkerTaskProvider can still
// grab the correct information and create/delete the task. // grab the correct information and create/delete the task.
// TODO(crbug/1016901): Flaky leaks on ASAN builds.
#if defined(ADDRESS_SANITIZER)
#define MAYBE_CreateTasksForOffTheRecordProfile \
DISABLED_CreateTasksForOffTheRecordProfile
#else
#define MAYBE_CreateTasksForOffTheRecordProfile \
CreateTasksForOffTheRecordProfile
#endif
IN_PROC_BROWSER_TEST_F(ServiceWorkerTaskProviderBrowserTest, IN_PROC_BROWSER_TEST_F(ServiceWorkerTaskProviderBrowserTest,
CreateTasksForOffTheRecordProfile) { MAYBE_CreateTasksForOffTheRecordProfile) {
StartUpdating(); StartUpdating();
EXPECT_TRUE(tasks().empty()); EXPECT_TRUE(tasks().empty());
......
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