2 * This file is part of the libsigrokdecode project.
4 * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
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.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include <libsigrokdecode.h> /* First, to avoid compiler warning. */
27 * Check various basic init related things.
29 * - Check whether an srd_init() call with path == NULL works.
30 * If it returns != SRD_OK (or segfaults) this test will fail.
32 * - Check whether a subsequent srd_exit() works.
33 * If it returns != SRD_OK (or segfaults) this test will fail.
35 START_TEST(test_init_exit
)
40 fail_unless(ret
== SRD_OK
, "srd_init() failed: %d.", ret
);
42 fail_unless(ret
== SRD_OK
, "srd_exit() failed: %d.", ret
);
47 * Check whether nested srd_init()/srd_exit() calls work/fail correctly.
48 * Two consecutive srd_init() calls without any srd_exit() inbetween are
49 * not allowed and should fail. However, two consecutive srd_exit() calls
50 * are currently allowed, the second one will just be a NOP basically.
52 START_TEST(test_init_exit_2
)
57 fail_unless(ret
== SRD_OK
, "srd_init() 1 failed: %d.", ret
);
59 fail_unless(ret
!= SRD_OK
, "srd_init() 2 didn't fail: %d.", ret
);
61 fail_unless(ret
== SRD_OK
, "srd_exit() 2 failed: %d.", ret
);
63 fail_unless(ret
== SRD_OK
, "srd_exit() 1 failed: %d.", ret
);
68 * Check whether three nested srd_init()/srd_exit() calls work/fail correctly.
70 START_TEST(test_init_exit_3
)
75 fail_unless(ret
== SRD_OK
, "srd_init() 1 failed: %d.", ret
);
77 fail_unless(ret
!= SRD_OK
, "srd_init() 2 didn't fail: %d.", ret
);
79 fail_unless(ret
!= SRD_OK
, "srd_init() 3 didn't fail: %d.", ret
);
81 fail_unless(ret
== SRD_OK
, "srd_exit() 3 failed: %d.", ret
);
83 fail_unless(ret
== SRD_OK
, "srd_exit() 2 failed: %d.", ret
);
85 fail_unless(ret
== SRD_OK
, "srd_exit() 1 failed: %d.", ret
);
89 Suite
*suite_core(void)
94 s
= suite_create("core");
96 tc
= tcase_create("init_exit");
97 tcase_add_checked_fixture(tc
, srdtest_setup
, srdtest_teardown
);
98 tcase_add_test(tc
, test_init_exit
);
99 tcase_add_test(tc
, test_init_exit_2
);
100 tcase_add_test(tc
, test_init_exit_3
);
101 suite_add_tcase(s
, tc
);