yaffs Fixed some tests in direct/timothy_tests/quick_tests
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_symlink_EROFS.c
index c53848cb64424020a4a5d3fd25c48fbab7790c58..74a0b622f7f4a75a22724568657849f903fca83a 100644 (file)
@@ -18,13 +18,7 @@ static int output = 0;
 int test_yaffs_symlink_EROFS(void)
 {
        int error_code = 0;
-       if (-1==yaffs_access(SYMLINK_PATH,0)){
-               output=yaffs_symlink(FILE_PATH,SYMLINK_PATH);
-               if (output>0){
-                       print_message("failed to create the first symlink\n",2);
-                       return -1;
-               }
-       }
+
        EROFS_setup();
        output = yaffs_symlink(FILE_PATH,SYMLINK_PATH);
        if (output<0){ 
@@ -44,7 +38,7 @@ int test_yaffs_symlink_EROFS(void)
 
 int test_yaffs_symlink_EROFS_clean(void)
 {
-       return EROFS_clean() && yaffs_unlink(SYMLINK_PATH);
+       return (EROFS_clean() && yaffs_unlink(SYMLINK_PATH));
 }