b2786c55c00253d8d51ab6e1ae8ed90329755f85
[urcu.git] / tests / unit / test_build.c
1 /*
2 * Copyright 2021 Simon Marchi <simon.marchi@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 /*
20 * This file is meant to verify that headers are compatible with both C and
21 * C++. It includes all exported headers and is compiled as C and C++ source.
22 */
23
24 #ifndef DYNAMIC_LINK_TEST
25 # define _LGPL_SOURCE
26 #endif
27
28 #include <urcu/arch.h>
29 #include <urcu/call-rcu.h>
30 #include <urcu/cds.h>
31 #include <urcu/compiler.h>
32 #include <urcu/debug.h>
33 #include <urcu/defer.h>
34 #include <urcu/flavor.h>
35 #include <urcu/futex.h>
36 #include <urcu/hlist.h>
37 #include <urcu/lfstack.h>
38 #include <urcu/list.h>
39 #include <urcu/pointer.h>
40 #include <urcu/rcuhlist.h>
41 #include <urcu/rculfhash.h>
42 #include <urcu/rculfqueue.h>
43 #include <urcu/rculfstack.h>
44 #include <urcu/rculist.h>
45 #include <urcu/ref.h>
46 #include <urcu/syscall-compat.h>
47 #include <urcu/system.h>
48 #include <urcu/tls-compat.h>
49 #include <urcu/uatomic.h>
50 #include <urcu/urcu-bp.h>
51 #include <urcu/urcu.h>
52 #include <urcu/urcu-mb.h>
53 #include <urcu/urcu-memb.h>
54 #include <urcu/urcu-qsbr.h>
55 #include <urcu/urcu-signal.h>
56 #include <urcu/wfcqueue.h>
57 #include <urcu/wfqueue.h>
58 #include <urcu/wfstack.h>
59
60 #include "tap.h"
61
62 static void test_lfstack(void)
63 {
64 struct cds_lfs_stack s;
65
66 cds_lfs_init(&s);
67 ok(cds_lfs_empty(&s), "cds_lfs_empty");
68 }
69
70 static void test_wfstack(void)
71 {
72 struct cds_wfs_stack s;
73
74 cds_wfs_init(&s);
75 ok(cds_wfs_empty(&s), "cds_lfs_empty");
76 }
77
78 static void test_wfcqueue(void)
79 {
80 struct cds_wfcq_head head;
81 struct cds_wfcq_tail tail;
82
83 cds_wfcq_init(&head, &tail);
84 ok(cds_wfcq_empty(&head, &tail), "cds_wfcq_empty");
85 }
86
87 static
88 void test_build_cds_list_head_init(void)
89 {
90 /* Test that the CDS_LIST_HEAD_INIT macro builds correctly. */
91 struct struct_with_list {
92 struct cds_list_head head;
93 };
94
95 struct struct_with_list list = {
96 .head = CDS_LIST_HEAD_INIT(list.head),
97 };
98 }
99
100 int main(void)
101 {
102 plan_tests(3);
103
104 test_lfstack();
105 test_wfstack();
106 test_wfcqueue();
107 test_build_cds_list_head_init();
108
109 return exit_status();
110 }
This page took 0.030975 seconds and 3 git commands to generate.