ObjFW  Diff

Differences From Artifact [d8a71e2ba4]:

To Artifact [44c304cc3d]:


18
19
20
21
22
23
24

25
26
27
28
29
30
31

#import "OFString.h"
#import "OFAutoreleasePool.h"

extern void array_tests();
extern void dataarray_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;







>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

#import "OFString.h"
#import "OFAutoreleasePool.h"

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;
88
89
90
91
92
93
94

95
96
97
98
99
100
101
102
103
104
	[pool release];
}

int
main()
{
	object_tests();

	string_tests();
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	xmlelement_tests();

	return fails;
}







>










89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
	[pool release];
}

int
main()
{
	object_tests();
	hashes_tests();
	string_tests();
	dataarray_tests();
	array_tests();
	dictionary_tests();
	list_tests();
	tcpsocket_tests();
	xmlelement_tests();

	return fails;
}