diff options
author | Max Kellermann <max@duempel.org> | 2013-02-01 15:52:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-02-01 15:52:03 +0100 |
commit | a7a10d03c9bf8b6398408edaeae64ffb35a83bb3 (patch) | |
tree | 11337371be33f82be3a523e3890fbfa4515a83a1 /test/test_pcm_main.cxx | |
parent | ef99d6ce3d9b82cb249ae08b390049a6f9cd9d56 (diff) |
test/test_pcm: add unit test for pcm_mix()
Diffstat (limited to 'test/test_pcm_main.cxx')
-rw-r--r-- | test/test_pcm_main.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_pcm_main.cxx b/test/test_pcm_main.cxx index 01cc731bf..a221b26af 100644 --- a/test/test_pcm_main.cxx +++ b/test/test_pcm_main.cxx @@ -43,5 +43,10 @@ main(int argc, char **argv) g_test_add_func("/pcm/format/16_to_32", test_pcm_format_16_to_32); g_test_add_func("/pcm/format/float", test_pcm_format_float); + g_test_add_func("/pcm/mix/8", test_pcm_mix_8); + g_test_add_func("/pcm/mix/16", test_pcm_mix_16); + g_test_add_func("/pcm/mix/24", test_pcm_mix_24); + g_test_add_func("/pcm/mix/32", test_pcm_mix_32); + g_test_run(); } |