X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Funit%2Ftest_urcu_multiflavor_single_unit.c;h=aff292a3f50d247d9489a29236884dedc32160fa;hp=909d4d2aaa131410a88604cb7962d84fbd5c4378;hb=HEAD;hpb=042e8cfe9b352b325a7350f345a3f2923606a2be diff --git a/tests/unit/test_urcu_multiflavor_single_unit.c b/tests/unit/test_urcu_multiflavor_single_unit.c index 909d4d2..5548744 100644 --- a/tests/unit/test_urcu_multiflavor_single_unit.c +++ b/tests/unit/test_urcu_multiflavor_single_unit.c @@ -1,23 +1,9 @@ +// SPDX-FileCopyrightText: 2012 Mathieu Desnoyers +// +// SPDX-License-Identifier: GPL-2.0-or-later + /* - * test_urcu_multiflavor.c - * * Userspace RCU library - test multiple RCU flavors into one program - * - * Copyright February 2012 - Mathieu Desnoyers - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef DYNAMIC_LINK_TEST @@ -27,7 +13,6 @@ #include #include #include -#include #include #include @@ -63,16 +48,6 @@ static int test_mf_memb(void) return 0; } -static int test_mf_signal(void) -{ - urcu_signal_register_thread(); - urcu_signal_read_lock(); - urcu_signal_read_unlock(); - urcu_signal_synchronize_rcu(); - urcu_signal_unregister_thread(); - return 0; -} - static int test_mf_qsbr(void) { urcu_qsbr_register_thread(); @@ -83,14 +58,13 @@ static int test_mf_qsbr(void) return 0; } -int main(int argc, char **argv) +int main(void) { - plan_tests(5); + plan_tests(4); ok1(!test_mf_mb()); ok1(!test_mf_bp()); ok1(!test_mf_memb()); - ok1(!test_mf_signal()); ok1(!test_mf_qsbr()); return exit_status();