Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1124)

Unified Diff: media/filters/audio_decoder_unittest.cc

Issue 2626283003: media: Simplify audio test names (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/audio_renderer_mixer_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_decoder_unittest.cc
diff --git a/media/filters/audio_decoder_unittest.cc b/media/filters/audio_decoder_unittest.cc
index cfaf4b8affa67e9c4cda43194d7cc888531ef3e8..2efeec7a649f2eabf0b8a39386784b0b8edec16b 100644
--- a/media/filters/audio_decoder_unittest.cc
+++ b/media/filters/audio_decoder_unittest.cc
@@ -483,7 +483,7 @@ const DecoderTestData kMediaCodecTests[] = {
#endif
};
-INSTANTIATE_TEST_CASE_P(MediaCodecAudioDecoderTest,
+INSTANTIATE_TEST_CASE_P(MediaCodec,
AudioDecoderTest,
testing::ValuesIn(kMediaCodecTests));
#endif // defined(OS_ANDROID)
@@ -576,10 +576,11 @@ const DecoderTestData kFFmpegBehavioralTest[] = {
{FFMPEG, kUnknownAudioCodec, "", NULL, 0, 0, CHANNEL_LAYOUT_NONE},
};
-INSTANTIATE_TEST_CASE_P(FFmpegAudioDecoderTest,
+INSTANTIATE_TEST_CASE_P(FFmpeg,
AudioDecoderTest,
testing::ValuesIn(kFFmpegTests));
-INSTANTIATE_TEST_CASE_P(FFmpegAudioDecoderBehavioralTest,
+
+INSTANTIATE_TEST_CASE_P(/* no prefix */,
FFmpegAudioDecoderBehavioralTest,
xhwang 2017/01/13 17:32:51 It seems this test is empty. Do we still need it?
DaleCurtis 2017/01/14 00:26:20 Don't think so? See l.575.
xhwang 2017/01/14 00:28:05 k, I'll just remove it.
testing::ValuesIn(kFFmpegBehavioralTest));
« no previous file with comments | « media/base/audio_renderer_mixer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698