X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fmirror_tests%2Fyaffs_test_open.c;h=daeb8a4b26198bf18cf60c0499203a48e9706272;hb=472c70456396a6f2019bfabe83bd292782dbd978;hp=e8b72b48eec6e419b3d15531f249dad37332051e;hpb=137f935f6d622bffdef2fece0c5194e85f5174e9;p=yaffs2.git diff --git a/direct/timothy_tests/mirror_tests/yaffs_test_open.c b/direct/timothy_tests/mirror_tests/yaffs_test_open.c index e8b72b4..daeb8a4 100644 --- a/direct/timothy_tests/mirror_tests/yaffs_test_open.c +++ b/direct/timothy_tests/mirror_tests/yaffs_test_open.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -17,21 +17,22 @@ int yaffs_test_open(arg_temp *args_struct) { char path[200]; char message[100]; + int output=0; join_paths(yaffs_struct.root_path,args_struct->string1, path ); sprintf(message,"file path: %s\n",path); print_message(3,message); - output=yaffs_open(path,args_struct->char1,args_struct->char2); + output=yaffs_open(path,args_struct->char1 &(O_TRUNC|O_EXCL|O_CREAT|O_APPEND),args_struct->char2&(S_IREAD|S_IWRITE)); if (output>=0){ output= yaffs_close(output); if (output<0) { - print_message(1,"failed to close handle\n"); - return -1 + print_message(3,"failed to close handle\n"); + return -1; } else { return 1; } } else { - print_message(1,"failed to close handle\n"); + print_message(3,"failed to open file\n"); return -1; } }