ObjFW  Diff

Differences From Artifact [44c304cc3d]:

To Artifact [3ca199df22]:


21
22
23
24
25
26
27



28
29
30
31
32
33
34

extern void array_tests();
extern void dataarray_tests();
extern void dictionary_tests();
extern void hashes_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







>
>
>







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

extern void array_tests();
extern void dataarray_tests();
extern void dictionary_tests();
extern void hashes_tests();
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
97
98
99
100
101
102
103



104
105
106
	string_tests();
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	xmlelement_tests();




	return fails;
}







>
>
>



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

	return fails;
}