]> sigrok.org Git - libsigrok.git/blame - tests/input_all.c
kingst-la2016: avoid filling the log file with redundant messages during long captures
[libsigrok.git] / tests / input_all.c
CommitLineData
71185b48
UH
1/*
2 * This file is part of the libsigrok project.
3 *
95bc7725 4 * Copyright (C) 2013-2014 Uwe Hermann <uwe@hermann-uwe.de>
71185b48
UH
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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
71185b48
UH
18 */
19
6ec6c43b 20#include <config.h>
71185b48
UH
21#include <stdlib.h>
22#include <check.h>
4960aeb0 23#include <libsigrok/libsigrok.h>
71185b48
UH
24#include "lib.h"
25
26/* Check whether at least one input module is available. */
27START_TEST(test_input_available)
28{
95bc7725 29 const struct sr_input_module **inputs;
71185b48
UH
30
31 inputs = sr_input_list();
32 fail_unless(inputs != NULL, "No input modules found.");
33}
34END_TEST
35
36Suite *suite_input_all(void)
37{
38 Suite *s;
39 TCase *tc;
40
41 s = suite_create("input-all");
42
43 tc = tcase_create("basic");
44 tcase_add_test(tc, test_input_available);
45 suite_add_tcase(s, tc);
46
47 return s;
48}