X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest_urcu_multiflavor.c;fp=tests%2Ftest_urcu_multiflavor.c;h=0000000000000000000000000000000000000000;hb=169e1020838cc5b9f3df503d160ce1bf0c939b2f;hp=cd573ca8f664b6de5c91d9a60aff3de6c059e2a2;hpb=5bcf8326b6e13ca93429925bc38fb81c73155c54;p=userspace-rcu.git diff --git a/tests/test_urcu_multiflavor.c b/tests/test_urcu_multiflavor.c deleted file mode 100644 index cd573ca..0000000 --- a/tests/test_urcu_multiflavor.c +++ /dev/null @@ -1,50 +0,0 @@ -/* - * 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. - */ - -#include -#include "test_urcu_multiflavor.h" - -int main(int argc, char **argv) -{ - int ret; - - ret = test_mf_memb(); - if (ret) - goto failure; - ret = test_mf_mb(); - if (ret) - goto failure; - ret = test_mf_signal(); - if (ret) - goto failure; - ret = test_mf_qsbr(); - if (ret) - goto failure; - ret = test_mf_bp(); - if (ret) - goto failure; - - exit(EXIT_SUCCESS); - -failure: - exit(EXIT_FAILURE); -}