yaffs Added some more tests to timothy_tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_read_EINVAL.c
index 27120b21c313a8074ea5a7e594522c7819558887..873f0127171a4d46f8112faefcd432e56c3afd20 100644 (file)
@@ -20,8 +20,7 @@ int test_yaffs_read_EINVAL(void)
 {
        int error_code = 0;
        handle=yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE);
-       printf("newly opend handle = %d handle\n",handle);
-       char text[2000000]="\0";
+       char text[2000000];
        int output=0;   
        
        if (handle<0){
@@ -86,7 +85,6 @@ int test_yaffs_read_EINVAL_clean(void)
                if(output>=0){
                        output=yaffs_close(handle);
                        if (output>=0){
-                               printf("closed the file, handle %d\n",handle);
                                return 1;
                        } else {
                                print_message("could not close the handle\n",2);
@@ -115,7 +113,7 @@ int test_yaffs_read_EINVAL_init(void)
                return -1;
        }
        
-       strcat(file_name,YAFFS_MOUNT_POINT);
+       strcpy(file_name,YAFFS_MOUNT_POINT);
        for (x=strlen(YAFFS_MOUNT_POINT); x<file_name_length -1; x++){
                file_name[x]='a';
        }