2014-05-15 00:35:55 +02:00
|
|
|
/*
|
2015-02-08 19:19:22 +01:00
|
|
|
* Copyright (C) 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
|
2014-05-15 00:35:55 +02:00
|
|
|
*
|
2014-07-31 19:45:27 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-05-15 00:35:55 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tests-core.h"
|
|
|
|
|
|
|
|
void tests_core(void)
|
|
|
|
{
|
|
|
|
TESTS_RUN(tests_core_atomic_tests());
|
|
|
|
TESTS_RUN(tests_core_bitarithm_tests());
|
|
|
|
TESTS_RUN(tests_core_cib_tests());
|
|
|
|
TESTS_RUN(tests_core_clist_tests());
|
2016-12-14 13:55:41 +01:00
|
|
|
TESTS_RUN(tests_core_list_tests());
|
2014-07-29 09:21:11 +02:00
|
|
|
TESTS_RUN(tests_core_priority_queue_tests());
|
2014-09-29 13:08:26 +02:00
|
|
|
TESTS_RUN(tests_core_byteorder_tests());
|
2014-12-08 10:15:48 +01:00
|
|
|
TESTS_RUN(tests_core_ringbuffer_tests());
|
2018-05-14 22:27:10 +02:00
|
|
|
TESTS_RUN(tests_core_xfa_tests());
|
2014-05-15 00:35:55 +02:00
|
|
|
}
|