]> sigrok.org Git - libsigrok.git/blame - tests/check_driver_all.c
tests: Fix a few warnings.
[libsigrok.git] / tests / check_driver_all.c
CommitLineData
79bb0e97
UH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 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 <stdlib.h>
22#include <check.h>
23#include "../libsigrok.h"
24#include "lib.h"
25
26struct sr_context *sr_ctx;
27
28static void setup(void)
29{
30 int ret;
31
32 ret = sr_init(&sr_ctx);
33 fail_unless(ret == SR_OK, "sr_init() failed: %d.", ret);
34}
35
36static void teardown(void)
37{
38 int ret;
39
40 ret = sr_exit(sr_ctx);
41 fail_unless(ret == SR_OK, "sr_exit() failed: %d.", ret);
42}
43
44/* Check whether at least one driver is available. */
45START_TEST(test_driver_available)
46{
47 struct sr_dev_driver **drivers;
48
49 drivers = sr_driver_list();
50 fail_unless(drivers != NULL, "No drivers found.");
51}
52END_TEST
53
54/* Check whether initializing all drivers works. */
55START_TEST(test_driver_init_all)
56{
57 srtest_driver_init_all(sr_ctx);
58}
59END_TEST
60
61/*
62 * Check whether setting a samplerate works.
63 *
64 * Additionally, this also checks whether SR_CONF_SAMPLERATE can be both
65 * set and read back properly.
66 */
44f91e29 67#if 0
79bb0e97
UH
68START_TEST(test_config_get_set_samplerate)
69{
70 /*
71 * Note: This currently only works for the demo driver.
72 * For other drivers, a scan is needed and the respective
73 * hardware must be attached to the host running the testsuite.
74 */
75 srtest_check_samplerate(sr_ctx, "demo", SR_KHZ(19));
76}
77END_TEST
44f91e29 78#endif
79bb0e97
UH
79
80Suite *suite_driver_all(void)
81{
82 Suite *s;
83 TCase *tc;
84
85 s = suite_create("driver-all");
86
87 tc = tcase_create("config");
88 tcase_add_checked_fixture(tc, setup, teardown);
89 tcase_add_test(tc, test_driver_available);
90 tcase_add_test(tc, test_driver_init_all);
44f91e29
UH
91 // TODO: Currently broken.
92 // tcase_add_test(tc, test_config_get_set_samplerate);
79bb0e97
UH
93 suite_add_tcase(s, tc);
94
95 return s;
96}