uatomic/x86: Remove redundant memory barriers
[urcu.git] / tests / unit / test_urcu_multiflavor.c
1 // SPDX-FileCopyrightText: 2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
2 //
3 // SPDX-License-Identifier: GPL-2.0-or-later
4
5 /*
6 * Userspace RCU library - test multiple RCU flavors into one program
7 */
8
9 #include <stdlib.h>
10 #include "test_urcu_multiflavor.h"
11
12 #include "tap.h"
13
14 int main(void)
15 {
16 plan_tests(4);
17
18 ok1(!test_mf_memb());
19
20 ok1(!test_mf_mb());
21 ok1(!test_mf_qsbr());
22 ok1(!test_mf_bp());
23
24 return exit_status();
25 }
This page took 0.030383 seconds and 5 git commands to generate.