Line data Source code
1 : /***************************************************************************//**
2 :
3 : @file main.c
4 :
5 : @author Stephen Brennan
6 :
7 : @date Created Thursday, 12 September 2013
8 :
9 : @brief Run tests on the libstephen library.
10 :
11 : @copyright Copyright (c) 2013-2015, Stephen Brennan. Released under the
12 : Revised BSD License. See the LICENSE.txt file for details.
13 :
14 : *******************************************************************************/
15 :
16 : #include <stdio.h>
17 :
18 : #include "libstephen/base.h"
19 : #include "tests.h"
20 :
21 : /**
22 : Main test function
23 : */
24 1 : int main(int argc, char ** argv)
25 : {
26 1 : linked_list_test();
27 1 : array_list_test();
28 1 : hash_table_test();
29 1 : bit_field_test();
30 1 : utf8_test();
31 1 : iter_test();
32 1 : list_test();
33 1 : args_test();
34 1 : charbuf_test();
35 1 : log_test();
36 : // return args_test_main(argc, argv);
37 : }
|