Merge branch 'big-files': Merge in large file support
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_rmdir.c
index 80146f96378b23fa807698eff38cf35c8a7a84b0..3775cc93ff4a26915355e987f5f5c9501dd9c3e5 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>
  * published by the Free Software Foundation.
  */
 
-#include "test_yaffs_open.h"
+#include "test_yaffs_rmdir.h"
 
 
 int test_yaffs_rmdir(void)
 {
        int output=0;
-       if (0 !=  yaffs_access(DIR_PATH,0)) {
-               output = yaffs_mkdir(DIR_PATH,S_IWRITE | S_IREAD);
+       if (0 !=  yaffs_access(RMDIR_PATH,0)) {
+               output = yaffs_mkdir(RMDIR_PATH,S_IWRITE | S_IREAD);
                if (output < 0) {
                        print_message("failed to create directory\n",2);
                        return -1;
                }
        }
-       return yaffs_rmdir(DIR_PATH);
+       return yaffs_rmdir(RMDIR_PATH);
 }