ObjFW  Diff

Differences From Artifact [3ca199df22]:

To Artifact [209c9edd89]:


26
27
28
29
30
31
32

33
34
35
36
37
38
39
extern void list_tests();
extern void object_tests();
#ifdef OF_PLUGINS
extern void plugin_tests();
#endif
extern void string_tests();
extern void tcpsocket_tests();

extern void xmlelement_tests();

static int fails = 0;

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







>







26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
extern void list_tests();
extern void object_tests();
#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)
{
99
100
101
102
103
104
105

106
107
108
109
110
111
112
	hashes_tests();
	string_tests();
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();

	xmlelement_tests();
#ifdef OF_PLUGINS
	plugin_tests();
#endif

	return fails;
}







>







100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
	hashes_tests();
	string_tests();
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	thread_tests();
	xmlelement_tests();
#ifdef OF_PLUGINS
	plugin_tests();
#endif

	return fails;
}