Commit a2885f73 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=kylechar@chromium.org

Bug: 1023677
Change-Id: Ie9121e5e3b44b0e61475908e3b2f7a9e3bb22699
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1926872
Auto-Submit: Ilia Samsonov <isamsonov@google.com>
Reviewed-by: default avatarkylechar <kylechar@chromium.org>
Commit-Queue: kylechar <kylechar@chromium.org>
Cr-Commit-Position: refs/heads/master@{#717269}
parent 2368881c
......@@ -1472,7 +1472,7 @@ TEST_P(MessageLoopTypedTest, IsIdleForTestingNonNestableTask) {
EXPECT_TRUE(loop->IsIdleForTesting());
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
MessageLoopTypedTest,
::testing::Values(MessagePumpType::DEFAULT,
MessagePumpType::UI,
......
......@@ -356,7 +356,7 @@ TEST_P(MessagePumpTest, NestedRunWithoutScheduleWorkInvokesDoWork) {
message_pump_->Run(&delegate);
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
MessagePumpTest,
::testing::Values(MessagePumpType::DEFAULT,
MessagePumpType::UI,
......
......@@ -418,12 +418,12 @@ TEST_P(WaitableEventWatcherDeletionTest, DeleteWatcherBeforeCallback) {
EXPECT_FALSE(did_callback);
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
WaitableEventWatcherTest,
testing::ValuesIn(testing_main_threads));
INSTANTIATE_TEST_SUITE_P(
,
All,
WaitableEventWatcherDeletionTest,
testing::Combine(testing::ValuesIn(testing_main_threads), testing::Bool()));
......
......@@ -697,7 +697,7 @@ TEST(TimerTest, ContinuationReset) {
}
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
TimerTestWithThreadType,
testing::ValuesIn(testing_main_threads));
......
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