29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
extern void plugin_tests();
#endif
extern void string_tests();
extern void tcpsocket_tests();
#ifdef OF_THREADS
extern void thread_tests();
#endif
extern void xmlelement_tests();
extern void xmlparser_tests();
static int fails = 0;
static void
output(OFString *str, int color)
{
#ifdef STDOUT
|
<
<
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
extern void plugin_tests();
#endif
extern void string_tests();
extern void tcpsocket_tests();
#ifdef OF_THREADS
extern void thread_tests();
#endif
static int fails = 0;
static void
output(OFString *str, int color)
{
#ifdef STDOUT
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
array_tests();
dictionary_tests();
list_tests();
tcpsocket_tests();
#ifdef OF_THREADS
thread_tests();
#endif
xmlelement_tests();
xmlparser_tests();
#ifdef OF_PLUGINS
plugin_tests();
#endif
return fails;
}
|
<
<
|
104
105
106
107
108
109
110
111
112
113
114
115
116
|
array_tests();
dictionary_tests();
list_tests();
tcpsocket_tests();
#ifdef OF_THREADS
thread_tests();
#endif
#ifdef OF_PLUGINS
plugin_tests();
#endif
return fails;
}
|