summaryrefslogtreecommitdiff
path: root/test/testfile.c
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2013-05-18 14:17:52 -0700
committerSam Lantinga <slouken@libsdl.org>2013-05-18 14:17:52 -0700
commitb80d20fb1100c64799769dbc0ef67582dcf29e31 (patch)
tree351258ecef703d638c01d1e629af4adc22a31994 /test/testfile.c
parent220d178aad1719aabbf6e2dd0bebcedba0abc951 (diff)
downloadsdl-b80d20fb1100c64799769dbc0ef67582dcf29e31.tar.gz
File style cleanup for the SDL 2.0 release
Diffstat (limited to 'test/testfile.c')
-rw-r--r--test/testfile.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/testfile.c b/test/testfile.c
index 3ee75ba91..6496eccd3 100644
--- a/test/testfile.c
+++ b/test/testfile.c
@@ -30,11 +30,11 @@
/* WARNING ! those 2 files will be destroyed by this test program */
#ifdef __IPHONEOS__
-#define FBASENAME1 "../Documents/sdldata1" /* this file will be created during tests */
+#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 */
+#define FBASENAME1 "sdldata1" /* this file will be created during tests */
+#define FBASENAME2 "sdldata2" /* this file should not exist before starting test */
#endif
#ifndef NULL
@@ -61,7 +61,7 @@ rwops_error_quit(unsigned line, SDL_RWops * rwops)
exit(1); /* quit with rwops error (test failed) */
}
-#define RWOP_ERR_QUIT(x) rwops_error_quit( __LINE__, (x) )
+#define RWOP_ERR_QUIT(x) rwops_error_quit( __LINE__, (x) )
@@ -93,9 +93,9 @@ main(int argc, char *argv[])
printf("test1 OK\n");
/* test 2 : check that inexistant file is not successfully opened/created when required */
-/* modes : r, r+ implie that file MUST exist
+/* modes : r, r+ implie that file MUST exist
modes : a, a+, w, w+ checks that it succeeds (file may not exists)
-
+
*/
rwops = SDL_RWFromFile(FBASENAME2, "rb"); /* this file doesn't exist that call must fail */
if (rwops)
@@ -125,8 +125,8 @@ main(int argc, char *argv[])
unlink(FBASENAME2);
printf("test2 OK\n");
-/* test 3 : creation, writing , reading, seeking,
- test : w mode, r mode, w+ mode
+/* test 3 : creation, writing , reading, seeking,
+ test : w mode, r mode, w+ mode
*/
rwops = SDL_RWFromFile(FBASENAME1, "wb"); /* write only */
if (!rwops)