yaffs Added some more tests to timothy_tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_rmdir.c
index fe0e09f6d67e6e1118012f97cc8553f556bec6b5..2fd79820c8cad82dbac89c3593e3a3f9b43b1572 100644 (file)
 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);
 }