ObjFW  Diff

Differences From Artifact [209c9edd89]:

To Artifact [04713db63e]:


28
29
30
31
32
33
34

35
36
37
38
39
40
41
#ifdef OF_PLUGINS
extern void plugin_tests();
#endif
extern void string_tests();
extern void tcpsocket_tests();
extern void thread_tests();
extern void xmlelement_tests();


static int fails = 0;

static void
output(OFString *str, int color)
{
#ifdef STDOUT







>







28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifdef OF_PLUGINS
extern void plugin_tests();
#endif
extern void string_tests();
extern void tcpsocket_tests();
extern void thread_tests();
extern void xmlelement_tests();
extern void xmlparser_tests();

static int fails = 0;

static void
output(OFString *str, int color)
{
#ifdef STDOUT
102
103
104
105
106
107
108

109
110
111
112
113
114
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	thread_tests();
	xmlelement_tests();

#ifdef OF_PLUGINS
	plugin_tests();
#endif

	return fails;
}







>






103
104
105
106
107
108
109
110
111
112
113
114
115
116
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	thread_tests();
	xmlelement_tests();
	xmlparser_tests();
#ifdef OF_PLUGINS
	plugin_tests();
#endif

	return fails;
}