summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/alsa
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2022-12-01 17:07:44 +0000
committerTakashi Iwai <tiwai@suse.de>2022-12-01 20:02:13 +0100
commitee12040dd53ac9034a782ed80eb8e8e496c05d9b (patch)
tree7697544a60bdaa7fb07cda563a8ec70f647749dd /tools/testing/selftests/alsa
parentae95efd9754c2afceca89635dacba29af794a131 (diff)
downloadlinux-ee12040dd53ac9034a782ed80eb8e8e496c05d9b.tar.bz2
kselftest/alsa: Provide more meaningful names for tests
Rather than just numbering the tests try to provide semi descriptive names for what the tests are trying to cover. This also has the advantage of meaning we can add more tests without having to keep the list of tests ordered by existing number which should make it easier to understand what we're testing and why. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20221201170745.1111236-6-broonie@kernel.org Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'tools/testing/selftests/alsa')
-rw-r--r--tools/testing/selftests/alsa/pcm-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testing/selftests/alsa/pcm-test.c b/tools/testing/selftests/alsa/pcm-test.c
index c701cf507a95..afa13377481d 100644
--- a/tools/testing/selftests/alsa/pcm-test.c
+++ b/tools/testing/selftests/alsa/pcm-test.c
@@ -446,9 +446,9 @@ __close:
}
static const struct time_test_def time_tests[] = {
- /* name format rate chan period buffer */
- { "test.time1", "S16_LE", 48000, 2, 512, 4096 },
- { "test.time2", "S16_LE", 48000, 2, 24000, 192000 },
+ /* name format rate chan period buffer */
+ { "S16.48k.2.small", "S16_LE", 48000, 2, 512, 4096 },
+ { "S16.48k.2.big", "S16_LE", 48000, 2, 24000, 192000 },
};
int main(void)