ObjFW  Diff

Differences From Artifact [fe239efee7]:

To Artifact [6c72294cec]:


17
18
19
20
21
22
23

24
25
26
27
28
29
30
#include <stdlib.h>

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

extern void array_tests();
extern void dictionary_tests();

extern void object_tests();
extern void string_tests();

static int fails = 0;

static void
output(OFString *str, int color)







>







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdlib.h>

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

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

static int fails = 0;

static void
output(OFString *str, int color)
87
88
89
90
91
92
93

94
95
96
int
main()
{
	object_tests();
	string_tests();
	array_tests();
	dictionary_tests();


	return fails;
}







>



88
89
90
91
92
93
94
95
96
97
98
int
main()
{
	object_tests();
	string_tests();
	array_tests();
	dictionary_tests();
	list_tests();

	return fails;
}