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