yaffs2: Make checkpoint block scanning skip bad blocks.
[yaffs2.git] / direct / basic-test / dtest.c
index dbbefd3dbe2343d85a816aec45fb17148402cb35..e3abe0f39da55bce56502298971452f37407543e 100644 (file)
@@ -512,7 +512,7 @@ void leave_unlinked_file(const char *path,int maxIterations,int siz)
 void dumpDirFollow(const char *dname)
 {
        yaffs_DIR *d;
-       yaffs_dirent *de;
+       struct yaffs_dirent *de;
        struct yaffs_stat s;
        char str[100];
 
@@ -559,7 +559,7 @@ void dumpDirFollow(const char *dname)
 void dump_directory_tree_worker(const char *dname,int recursive)
 {
        yaffs_DIR *d;
-       yaffs_dirent *de;
+       struct yaffs_dirent *de;
        struct yaffs_stat s;
        char str[1000];
 
@@ -895,7 +895,7 @@ int huge_directory_test_on_path(char *path)
 {
 
        yaffs_DIR *d;
-       yaffs_dirent *de;
+       struct yaffs_dirent *de;
        struct yaffs_stat s;
 
        int f;
@@ -1544,7 +1544,7 @@ void lookup_test(const char *mountpt)
 
 
        yaffs_DIR *d;
-       yaffs_dirent *de;
+       struct yaffs_dirent *de;
 
        yaffs_start_up();
 
@@ -3046,34 +3046,36 @@ void readdir_test(const char *mountpt)
        int i;
        int handle;
        char fullname[100];
-       
+
        yaffs_DIR *dirs[100];
-       
+
 
        yaffs_trace_mask = 0;
 
        yaffs_start_up();
 
        yaffs_mount(mountpt);
-       
+
        for(i = 0; i < 100; i++) {
                 dirs[i] = yaffs_opendir(mountpt);
                 printf("%2d %p,", i, dirs[i]);
        }
-       
+
        printf("\n");
-       
+
        for(i = 0; i < 100; i++) {
                 if(dirs[i])
                          yaffs_closedir(dirs[i]);
        }
-       
-       
+
+
        for(i = 0; i < 100; i++) {
                 dirs[i] = yaffs_opendir(mountpt);
                 printf("%2d %p,", i, dirs[i]);
        }
-       
+
+       yaffs_unmount(mountpt);
+
 
 }