Commit a04d5166 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=drubery@chromium.org

Bug: 1023677
Change-Id: I7fa9add0daaa2d43314ffaadd836db539bfd5b0f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1957541
Auto-Submit: Ilia Samsonov <isamsonov@google.com>
Reviewed-by: default avatarDaniel Rubery <drubery@chromium.org>
Commit-Queue: Daniel Rubery <drubery@chromium.org>
Cr-Commit-Position: refs/heads/master@{#722989}
parent de283d48
......@@ -1149,7 +1149,7 @@ IN_PROC_BROWSER_TEST_P(V4SafeBrowsingServiceJsRequestInterstitialTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
V4SafeBrowsingServiceJsRequestInterstitialTest,
::testing::Values(
JsRequestTestParam(ContextType::kWindow, JsRequestType::kWebSocket),
......@@ -1179,7 +1179,7 @@ IN_PROC_BROWSER_TEST_P(V4SafeBrowsingServiceJsRequestNoInterstitialTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
V4SafeBrowsingServiceJsRequestNoInterstitialTest,
::testing::Values(JsRequestTestParam(ContextType::kSharedWorker,
JsRequestType::kWebSocket),
......@@ -1207,7 +1207,7 @@ IN_PROC_BROWSER_TEST_P(V4SafeBrowsingServiceJsRequestSafeTest,
}
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
V4SafeBrowsingServiceJsRequestSafeTest,
::testing::Values(
JsRequestTestParam(ContextType::kWindow, JsRequestType::kWebSocket),
......@@ -1287,7 +1287,7 @@ IN_PROC_BROWSER_TEST_P(V4SafeBrowsingServiceTestCommittedInterstitials,
///////////////////////////////////////////////////////////////////////////////
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
V4SafeBrowsingServiceTestCommittedInterstitials,
testing::Bool());
......
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