# HG changeset patch # User Holmes Futrell # Date 1218761878 0 # Node ID daf3baf72a458d3a1ef79b0f8906f1ff64a753e3 # Parent 7e449145b6ca3e3277585d4f868772d542d0629a Added lines to change path when run on iPhone. Reason: iPhone operates in sandbox and so cannot write files just anywhere ... I use the documents folder in this test. diff -r 7e449145b6ca -r daf3baf72a45 test/testfile.c --- a/test/testfile.c Fri Aug 15 00:56:43 2008 +0000 +++ b/test/testfile.c Fri Aug 15 00:57:58 2008 +0000 @@ -14,9 +14,14 @@ #include /* WARNING ! those 2 files will be destroyed by this test program */ -#define FBASENAME1 "sdldata1" /* this file will be created during tests */ -#define FBASENAME2 "sdldata2" /* this file should not exists before starting test */ +#ifdef __IPHONEOS__ + #define FBASENAME1 "../Documents/sdldata1" /* this file will be created during tests */ + #define FBASENAME2 "../Documents/sdldata2" /* this file should not exist before starting test */ +#else + #define FBASENAME1 "sdldata1" /* this file will be created during tests */ + #define FBASENAME2 "sdldata2" /* this file should not exist before starting test */ +#endif #ifndef NULL #define NULL ((void *)0)