X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftests%2Fyaffs_test.c;h=520626abe74e07ece3dd438f6240c3fe46c6bfce;hp=5a1e0c77d1c3243631706329e3fbc8d74ed788ef;hb=ef32964aac3e4dfee477d4c2b0df608fbe849397;hpb=0bd3fe36f9866114a00c9d152a9671071867af4c diff --git a/direct/tests/yaffs_test.c b/direct/tests/yaffs_test.c index 5a1e0c7..520626a 100644 --- a/direct/tests/yaffs_test.c +++ b/direct/tests/yaffs_test.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002 Aleph One Ltd. + * Copyright (C) 2002-2010 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Charles Manning @@ -24,6 +24,8 @@ #include "yaffsfs.h" +#include "yaffs_trace.h" + #include "nor_stress.h" #include "yaffs_fsx.h" @@ -71,7 +73,8 @@ void yaffs_bash_around(const char *mountpt, int n_cycles) while(n_cycles){ if(cycle % 100 == 0){ - printf("CYCLE %8d mo %2d space %d ",cycle,op_max,yaffs_freespace(mountpt)); + printf("CYCLE %8d mo %2d inodes %d space %d ",cycle,op_max, + yaffs_inodecount(mountpt),yaffs_freespace(mountpt)); for(i = 0; i < BASH_HANDLES; i++) printf("%2d ",h[i]); printf("\n"); @@ -189,7 +192,7 @@ int main(int argc, char **argv) signal(SIGBUS,bad_ptr_handler); signal(SIGABRT,bad_ptr_handler); #endif - while ((ch = getopt(argc,argv, "bfilmn:ps:u")) + while ((ch = getopt(argc,argv, "bfilmn:ps:t:u")) != EOF) switch (ch) { case 's': @@ -219,6 +222,9 @@ int main(int argc, char **argv) case 'n': n_cycles = atoi(optarg); break; + case 't': + yaffs_traceMask = strtol(optarg,NULL,0); + break; default: BadUsage(); /* NOTREACHED */