Commit da7aee42 authored by Ilia Samsonov's avatar Ilia Samsonov Committed by Commit Bot

Add prefix to empty param tests.

googletest will no longer support empty prefix
for parameterized INSTANTIATE_TEST_SUITE_P.
Adding "All" prefix to existing empty prefix test suites.

This CL was uploaded by git cl split.

R=jkarlin@chromium.org

Bug: 1023677
Change-Id: I6584031bf0f103e6036009dfcac49b5541bce09f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1957550
Auto-Submit: Ilia Samsonov <isamsonov@google.com>
Reviewed-by: default avatarJosh Karlin <jkarlin@chromium.org>
Commit-Queue: Josh Karlin <jkarlin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#723387}
parent 2fd7c02b
......@@ -470,7 +470,7 @@ IN_PROC_BROWSER_TEST_P(AdClickNavigationBrowserTest, UseCounter) {
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
AdClickNavigationBrowserTest,
::testing::Combine(
::testing::Values(NavigationInitiationType::kWindowOpen,
......@@ -515,7 +515,7 @@ IN_PROC_BROWSER_TEST_P(AdTaggingEventFromSubframeBrowserTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
AdTaggingEventFromSubframeBrowserTest,
::testing::Combine(::testing::Bool(), ::testing::Bool()));
......@@ -547,7 +547,7 @@ IN_PROC_BROWSER_TEST_P(AdTaggingEventWithScriptInStackBrowserTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
AdTaggingEventWithScriptInStackBrowserTest,
::testing::Bool());
......
......@@ -152,7 +152,7 @@ TEST_P(SubresourceFilterAbusiveTest, ConfigCombination) {
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
SubresourceFilterAbusiveTest,
::testing::Combine(
::testing::Values(METADATA_WARN, METADATA_ENFORCE, METADATA_NONE),
......
......@@ -66,7 +66,7 @@ TEST_P(SubresourceFilterConfigurationTest, DISABLED_OneListActivation) {
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
SubresourceFilterConfigurationTest,
::testing::Combine(
::testing::Values(ActivationScope::NO_SITES,
......
......@@ -424,7 +424,7 @@ IN_PROC_BROWSER_TEST_P(SubresourceFilterPopupBrowserTestWithParam,
EXPECT_EQ(enable_adblock_on_abusive_sites, AreDisallowedRequestsBlocked());
}
INSTANTIATE_TEST_SUITE_P(/* no prefix */,
INSTANTIATE_TEST_SUITE_P(All,
SubresourceFilterPopupBrowserTestWithParam,
::testing::Values(false, true));
......
......@@ -105,7 +105,7 @@ IN_PROC_BROWSER_TEST_P(SubresourceFilterWebSocketBrowserTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
SubresourceFilterWebSocketBrowserTest,
::testing::Values(WebSocketCreationPolicy::IN_WORKER,
WebSocketCreationPolicy::IN_MAIN_FRAME));
......
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