Commit c553f203 authored by Yi Gu's avatar Yi Gu Committed by Chromium LUCI CQ

[Sheriff] Disable DeclarativeNetRequestLazyAPItest.DynamicRules on MSAN

Seems due to crrev.com/c/2500441. See linked bug for details.

Bug: 1167158
Change-Id: I266c816d846fe6b90c65b5d77c9a4f65714c01b5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2633362Reviewed-by: default avatarAnatoliy Potapchuk <apotapchuk@chromium.org>
Reviewed-by: default avatarDavid Bertoni <dbertoni@chromium.org>
Commit-Queue: Yi Gu <yigu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844108}
parent 80af43d3
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "base/files/scoped_temp_dir.h" #include "base/files/scoped_temp_dir.h"
#include "base/macros.h" #include "base/macros.h"
#include "base/threading/thread_restrictions.h" #include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#include "components/version_info/version_info.h" #include "components/version_info/version_info.h"
#include "content/public/test/browser_test.h" #include "content/public/test/browser_test.h"
#include "extensions/common/features/feature_channel.h" #include "extensions/common/features/feature_channel.h"
...@@ -73,7 +74,13 @@ INSTANTIATE_TEST_SUITE_P(ServiceWorker, ...@@ -73,7 +74,13 @@ INSTANTIATE_TEST_SUITE_P(ServiceWorker,
DeclarativeNetRequestLazyAPItest, DeclarativeNetRequestLazyAPItest,
::testing::Values(ContextType::kServiceWorker)); ::testing::Values(ContextType::kServiceWorker));
IN_PROC_BROWSER_TEST_P(DeclarativeNetRequestLazyAPItest, DynamicRules) { // Flaky on MSAN: https://crbug.com/1167168
#if defined(MEMORY_SANITIZER)
#define MAYBE_DynamicRules DISABLED_DynamicRules
#else
#define MAYBE_DynamicRules DynamicRules
#endif
IN_PROC_BROWSER_TEST_P(DeclarativeNetRequestLazyAPItest, MAYBE_DynamicRules) {
ASSERT_TRUE(RunTest("dynamic_rules")) << message_; ASSERT_TRUE(RunTest("dynamic_rules")) << message_;
} }
......
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