Commit e55669bc authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

Disable ContentSubresourceFilterThrottleManagerTest.ActivationPropagation2

Crashes on win

TBR=hbos@chromium.org
NOTRY=true

Bug: 1010000
Change-Id: Iad6d7c4fb09568baa46291d1aa027ba50a4be434
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1833309Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#701532}
parent f102298d
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "base/test/test_simple_task_runner.h" #include "base/test/test_simple_task_runner.h"
#include "base/threading/thread_task_runner_handle.h" #include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h" #include "base/time/time.h"
#include "build/build_config.h"
#include "components/subresource_filter/content/browser/async_document_subresource_filter.h" #include "components/subresource_filter/content/browser/async_document_subresource_filter.h"
#include "components/subresource_filter/content/browser/subframe_navigation_test_utils.h" #include "components/subresource_filter/content/browser/subframe_navigation_test_utils.h"
#include "components/subresource_filter/content/browser/subresource_filter_client.h" #include "components/subresource_filter/content/browser/subresource_filter_client.h"
...@@ -688,7 +689,14 @@ TEST_P(ContentSubresourceFilterThrottleManagerTest, ActivationPropagation) { ...@@ -688,7 +689,14 @@ TEST_P(ContentSubresourceFilterThrottleManagerTest, ActivationPropagation) {
} }
// Ensure activation propagates through whitelisted documents. // Ensure activation propagates through whitelisted documents.
TEST_P(ContentSubresourceFilterThrottleManagerTest, ActivationPropagation2) { // crbug.com/1010000: crashes on win
#if defined(OS_WIN)
#define MAYBE_ActivationPropagation2 DISABLED_ActivationPropagation2
#else
#define MAYBE_ActivationPropagation2 ActivationPropagation2
#endif
TEST_P(ContentSubresourceFilterThrottleManagerTest,
MAYBE_ActivationPropagation2) {
NavigateAndCommitMainFrame(GURL(kTestURLWithActivation)); NavigateAndCommitMainFrame(GURL(kTestURLWithActivation));
ExpectActivationSignalForFrame(main_rfh(), true /* expect_activation */); ExpectActivationSignalForFrame(main_rfh(), true /* expect_activation */);
......
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