OSDN Git Service

69c0843ca68c084e4c2d72e536ce95476e01b08b
[bbk/bchan.git] / src / test_main.c
1 /*
2  * test_main.c
3  *
4  * Copyright (c) 2009-2011 project bchan
5  *
6  * This software is provided 'as-is', without any express or implied
7  * warranty. In no event will the authors be held liable for any damages
8  * arising from the use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not
15  *    claim that you wrote the original software. If you use this software
16  *    in a product, an acknowledgment in the product documentation would be
17  *    appreciated but is not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  *    misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source
23  *    distribution.
24  *
25  */
26
27 #include        <basic.h>
28 #include        <bstdlib.h>
29 #include        <bstdio.h>
30 #include        <bstring.h>
31 #include        <errcode.h>
32 #include        <tstring.h>
33 #include        <keycode.h>
34 #include        <tcode.h>
35 #include        <btron/btron.h>
36 #include        <btron/dp.h>
37 #include        <btron/hmi.h>
38 #include        <btron/vobj.h>
39 #include        <btron/libapp.h>
40 #include        <btron/bsocket.h>
41
42 #include    "test.h"
43
44 EXPORT  W       MAIN(MESSAGE *msg)
45 {
46         test_cache_main();
47         test_parser_main();
48         test_layout_main();
49         test_parselib_main();
50         test_submitutil_main();
51         test_sjistring_main();
52         test_residhash_main();
53         test_resindexhash_main();
54         test_postres_main();
55         test_tadimf_main();
56         test_array_main();
57         test_wordlist_main();
58
59         return 0;
60 }