Skip to content

Commit

Permalink
Add prefix to empty param tests.
Browse files Browse the repository at this point in the history
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=olka@chromium.org

Bug: 1023677
Change-Id: I0c0ffb6f62ce9874799f0657a1e9585d1fbd648b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1957560
Auto-Submit: Ilia Samsonov <isamsonov@google.com>
Reviewed-by: Olga Sharonova <olka@chromium.org>
Commit-Queue: Olga Sharonova <olka@chromium.org>
Cr-Commit-Position: refs/heads/master@{#722860}
  • Loading branch information
isamsonov-g authored and Commit Bot committed Dec 9, 2019
1 parent 8de286b commit 67eb35d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions media/base/audio_renderer_mixer_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ TEST_P(AudioRendererMixerBehavioralTest, MixerPausesStream) {
}

INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
AudioRendererMixerTest,
testing::Values(
// No resampling, 1 input sample rate.
Expand Down Expand Up @@ -560,7 +560,7 @@ INSTANTIATE_TEST_SUITE_P(
// support single item lists and we don't want these test cases to run for every
// parameter set.
INSTANTIATE_TEST_SUITE_P(
/* no prefix */,
All,
AudioRendererMixerBehavioralTest,
testing::ValuesIn(std::vector<AudioRendererMixerTestData>(
1,
Expand Down

0 comments on commit 67eb35d

Please sign in to comment.