]> code.delx.au - pulseaudio/blob - src/tests/get-binary-name-test.c
sink-input, source-output: Add hooks for mute changes
[pulseaudio] / src / tests / get-binary-name-test.c
1 /***
2 This file is part of PulseAudio.
3
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 2.1 of the License,
7 or (at your option) any later version.
8
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA.
18 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <string.h>
26
27 #include <check.h>
28
29 #include <pulse/util.h>
30 #include <pulse/xmalloc.h>
31
32 #include <pulsecore/log.h>
33
34 START_TEST (getbinaryname_test) {
35 char *exename;
36 size_t allocated = 128;
37
38 for (;;) {
39 exename = pa_xmalloc(allocated);
40
41 if (!pa_get_binary_name(exename, allocated)) {
42 pa_log_error("failed to read binary name");
43 pa_xfree(exename);
44 fail();
45 }
46
47 if (strlen(exename) < allocated - 1) {
48 pa_log("%s", exename);
49 pa_xfree(exename);
50 return;
51 }
52
53 pa_xfree(exename);
54 allocated *= 2;
55 }
56 }
57 END_TEST
58
59 int main(int argc, char *argv[]) {
60 int failed = 0;
61 Suite *s;
62 TCase *tc;
63 SRunner *sr;
64
65 s = suite_create("Binary Name");
66 tc = tcase_create("getbinaryname");
67 tcase_add_test(tc, getbinaryname_test);
68 suite_add_tcase(s, tc);
69
70 sr = srunner_create(s);
71 srunner_run_all(sr, CK_NORMAL);
72 failed = srunner_ntests_failed(sr);
73 srunner_free(sr);
74
75 return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
76 }