ObjFW  Check-in [293de01ec2]

Overview
Comment:tests: Disable escape codes on Win32.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 293de01ec2764355bd4ae1258886c1a65ea1ffe037df7995bebb87ed2a08a31d
User & Date: js on 2013-11-30 20:22:48
Other Links: manifest | tags
Context
2013-12-01
00:07
.gitignore: Add utils/ofzip.exe. check-in: 8b0c20a78c user: js tags: trunk
2013-11-30
20:22
tests: Disable escape codes on Win32. check-in: 293de01ec2 user: js tags: trunk
19:53
OFObject: Make _isa private. check-in: cb6a61527a user: js tags: trunk
Changes

Modified tests/TestsAppDelegate.m from [07d41aeb0a] to [b829b6aa4c].

23
24
25
26
27
28
29





30
31
32
33
34
35
36
#import "OFStdIOStream.h"
#import "OFFile.h"
#import "OFAutoreleasePool.h"

#import "OFException.h"

#import "TestsAppDelegate.h"






#ifdef _PSP
# include <pspmoduleinfo.h>
# include <pspkernel.h>
# include <pspdebug.h>
# include <pspctrl.h>
PSP_MODULE_INFO("ObjFW Tests", 0, 0, 0);







>
>
>
>
>







23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#import "OFStdIOStream.h"
#import "OFFile.h"
#import "OFAutoreleasePool.h"

#import "OFException.h"

#import "TestsAppDelegate.h"

#if defined(_WIN32) && defined(STDOUT)
# undef STDOUT
# define STDOUT_SIMPLE
#endif

#ifdef _PSP
# include <pspmoduleinfo.h>
# include <pspkernel.h>
# include <pspdebug.h>
# include <pspctrl.h>
PSP_MODULE_INFO("ObjFW Tests", 0, 0, 0);