X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_rmdir.c;h=3775cc93ff4a26915355e987f5f5c9501dd9c3e5;hp=fe0e09f6d67e6e1118012f97cc8553f556bec6b5;hb=6648cbf52d6695755941ff8607fd7a0cda542e05;hpb=d3abc5c5da005343e7d78c5c9a51d58af14b3faa diff --git a/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c b/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c index fe0e09f..3775cc9 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_rmdir.c @@ -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 @@ -17,14 +17,14 @@ 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); }