Merge branch 'big-files': Merge in large file support
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_rmdir_ENOENT.c
index a3e581e374720d56329fb7b8ca20ba88e00a1db6..f5d627184a6e156d8ca9597f00e331c717dd357c 100644 (file)
@@ -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 <timothy@yaffs.net>
@@ -19,13 +19,6 @@ int test_yaffs_rmdir_ENOENT(void)
        int output=0;
        int error_code =0;
 
-       if (0 !=  yaffs_access(DIR_PATH,0)) {
-               output = yaffs_mkdir(DIR_PATH,S_IWRITE | S_IREAD);
-               if (output < 0) {
-                       print_message("failed to create directory\n",2);
-                       return -1;
-               }
-       }
        output = yaffs_rmdir("/yaffs2/non-existing-dir/");
        if (output<0){ 
                error_code=yaffs_get_error();
@@ -45,14 +38,6 @@ int test_yaffs_rmdir_ENOENT(void)
 int test_yaffs_rmdir_ENOENT_clean(void)
 {
        int output = 0;
-       if (0 ==  yaffs_access(DIR_PATH,0)) {
-               output = yaffs_rmdir(DIR_PATH);
-               if (output < 0) {
-                       print_message("failed to remove the directory\n",2);
-                       return -1;
-               }
-       }
        return 1;
-
 }