ObjFW  Check-in [917e9dff1f]

Overview
Comment:Fix includes in OFBlockTests for ObjFW runtime.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | runtime
Files: files | file ages | folders
SHA3-256: 917e9dff1fa1cd568c58f57f46e04195fbe476128b6ea3af48fa603e506e65f0
User & Date: js on 2012-04-03 18:42:52
Other Links: branch diff | manifest | tags
Context
2012-04-06
12:14
Make objc_msg_lookup_super public. check-in: 10b3fbc5fc user: js tags: runtime
2012-04-03
18:42
Fix includes in OFBlockTests for ObjFW runtime. check-in: 917e9dff1f user: js tags: runtime
18:40
Merge branch 'master' into runtime check-in: 6bad5d9148 user: js tags: runtime
Changes

Modified tests/OFBlockTests.m from [2ade830512] to [b8c56f759a].

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "config.h"

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

#if defined(OF_OBJFW_RUNTIME)
# include <objfw-rt.h>
#elif defined(OF_APPLE_RUNTIME) || defined(OF_GNU_RUNTIME)
# include <objc/runtime.h>
#elif defined(OF_OLD_GNU_RUNTIME)
# include <objc/objc-api.h>
#endif
#if defined(OF_OLD_GNU_RUNTIME) || defined(OF_OBJFW_RUNTIME)
# define objc_getClass objc_get_class
#endif

#import "TestsAppDelegate.h"

static OFString *module = @"OFBlock";








|
|

<
<

|







17
18
19
20
21
22
23
24
25
26


27
28
29
30
31
32
33
34
35
#include "config.h"

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

#if defined(OF_OBJFW_RUNTIME)
# include "runtime.h"
#elif defined(OF_APPLE_RUNTIME)
# include <objc/runtime.h>


#endif
#ifdef OF_OBJFW_RUNTIME
# define objc_getClass objc_get_class
#endif

#import "TestsAppDelegate.h"

static OFString *module = @"OFBlock";