X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rmdir.c;h=2fd79820c8cad82dbac89c3593e3a3f9b43b1572;hb=6752805392f3b421d820effa4bf3f7484862d409;hp=80146f96378b23fa807698eff38cf35c8a7a84b0;hpb=91b4dd9fa84e71dc0da65e445e15a2e349b00a54;p=yaffs2.git diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c b/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c index 80146f9..2fd7982 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c @@ -11,20 +11,20 @@ * 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); }