]> sigrok.org Git - libsigrok.git/blob - tests/input_all.c
Build: Include <config.h> first in all source files
[libsigrok.git] / tests / input_all.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013-2014 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <config.h>
22 #include <stdlib.h>
23 #include <check.h>
24 #include <libsigrok/libsigrok.h>
25 #include "lib.h"
26
27 /* Check whether at least one input module is available. */
28 START_TEST(test_input_available)
29 {
30         const struct sr_input_module **inputs;
31
32         inputs = sr_input_list();
33         fail_unless(inputs != NULL, "No input modules found.");
34 }
35 END_TEST
36
37 Suite *suite_input_all(void)
38 {
39         Suite *s;
40         TCase *tc;
41
42         s = suite_create("input-all");
43
44         tc = tcase_create("basic");
45         tcase_add_test(tc, test_input_available);
46         suite_add_tcase(s, tc);
47
48         return s;
49 }