Unexported vlc_thread_set_priority().
[vlc/vlc-skelet.git] / test / libvlc / core.c
blob85806310b97cb1f88030d62240391cd118b0c5ae
1 /*
2 * core.c - libvlc smoke test
4 * $Id$
5 */
7 /**********************************************************************
8 * Copyright (C) 2007 RĂ©mi Denis-Courmont. *
9 * This program is free software; you can redistribute and/or modify *
10 * it under the terms of the GNU General Public License as published *
11 * by the Free Software Foundation; version 2 of the license, or (at *
12 * your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
17 * See the GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, you can get it from: *
21 * http://www.gnu.org/copyleft/gpl.html *
22 **********************************************************************/
24 #include "test.h"
26 #include <string.h>
28 static void test_core (const char ** argv, int argc)
30 libvlc_instance_t *vlc;
32 log ("Testing core\n");
34 vlc = libvlc_new (argc, argv);
35 assert (vlc != NULL);
37 libvlc_retain (vlc);
38 libvlc_release (vlc);
39 libvlc_release (vlc);
42 static void test_moduledescriptionlist (libvlc_module_description_t *list)
44 libvlc_module_description_t *module = list;
45 while ( module ) {
46 assert (strlen (module->psz_name) );
47 assert (strlen (module->psz_shortname) );
48 assert (module->psz_longname == NULL || strlen (module->psz_longname));
49 assert (module->psz_help == NULL || strlen (module->psz_help));
50 module = module->p_next;
53 libvlc_module_description_list_release (list);
56 static void test_audiovideofilterlists (const char ** argv, int argc)
58 libvlc_instance_t *vlc;
60 log ("Testing libvlc_(audio|video)_filter_list_get()\n");
62 vlc = libvlc_new (argc, argv);
63 assert (vlc != NULL);
65 test_moduledescriptionlist (libvlc_audio_filter_list_get (vlc));
66 test_moduledescriptionlist (libvlc_video_filter_list_get (vlc));
68 libvlc_release (vlc);
71 int main (void)
73 test_init();
75 test_core (test_defaults_args, test_defaults_nargs);
76 test_audiovideofilterlists (test_defaults_args, test_defaults_nargs);
78 return 0;