ObjFW  Diff

Differences From Artifact [144512e59e]:

To Artifact [8a5fa64125]:


21
22
23
24
25
26
27

28
29
30
31
32
33
34

extern void array_tests();
extern void dictionary_tests();
extern void list_tests();
extern void object_tests();
extern void string_tests();
extern void tcpsocket_tests();


static int fails = 0;

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







>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

extern void array_tests();
extern void dictionary_tests();
extern void list_tests();
extern void object_tests();
extern void string_tests();
extern void tcpsocket_tests();
extern void xmlelement_tests();

static int fails = 0;

static void
output(OFString *str, int color)
{
#ifdef STDOUT
91
92
93
94
95
96
97

98
99
100
{
	object_tests();
	string_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();


	return fails;
}







>



92
93
94
95
96
97
98
99
100
101
102
{
	object_tests();
	string_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	xmlelement_tests();

	return fails;
}