ObjFW  Diff

Differences From Artifact [f044fa8a49]:

To Artifact [fe239efee7]:


15
16
17
18
19
20
21

22
23
24
25
26
27
28
#include <stdio.h>
#endif
#include <stdlib.h>

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


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

static int fails = 0;

static void







>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <stdio.h>
#endif
#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
84
85
86
87
88
89
90

91
92
93
94
}

int
main()
{
	object_tests();
	string_tests();

	dictionary_tests();

	return fails;
}







>




85
86
87
88
89
90
91
92
93
94
95
96
}

int
main()
{
	object_tests();
	string_tests();
	array_tests();
	dictionary_tests();

	return fails;
}