fixed up all the quick tests
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / test_yaffs_truncate_ENOTDIR.c
index a2d010f646508deb91b98b7db8bcfbe6bde09247..ce621a0cf83ee7427591043bd52b19698d309227 100644 (file)
@@ -19,9 +19,12 @@ int test_yaffs_truncate_ENOTDIR(void)
 {
        int error=0;
        int output=0;
+       if (yaffs_close(yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE))==-1){
+               print_message("failed to create file \n",1);
+               return -1;
+       }
 
-
-       output= yaffs_truncate("/yaffs2/foo/file",FILE_SIZE_TRUNCATED );
+       output= yaffs_truncate("/yaffs2/test_dir/foo/file",FILE_SIZE_TRUNCATED );
        if (output<0){
                error=yaffs_get_error();
                if (abs(error)==ENOTDIR){