aboutsummaryrefslogtreecommitdiff
path: root/test/test_pcm_main.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-31 22:27:53 +0100
committerMax Kellermann <max@duempel.org>2013-02-01 00:32:05 +0100
commite0c645a2707b12578d6e6a61c7cd6a6ec9541e00 (patch)
treeee5c914c730a62ed75ee874b0e6ba1ca77dafd94 /test/test_pcm_main.cxx
parente42734c3f3f669039f5e088371ab1ef8c7674bb5 (diff)
test/test_pcm: add unit tests for the PcmFormat library
Diffstat (limited to 'test/test_pcm_main.cxx')
-rw-r--r--test/test_pcm_main.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_pcm_main.cxx b/test/test_pcm_main.cxx
index 5a49a339..01cc731b 100644
--- a/test/test_pcm_main.cxx
+++ b/test/test_pcm_main.cxx
@@ -38,5 +38,10 @@ main(int argc, char **argv)
g_test_add_func("/pcm/volume/32", test_pcm_volume_32);
g_test_add_func("/pcm/volume/float", test_pcm_volume_float);
+ g_test_add_func("/pcm/format/8_to_16", test_pcm_format_8_to_16);
+ g_test_add_func("/pcm/format/16_to_24", test_pcm_format_16_to_24);
+ 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_run();
}