X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fdtest.c;h=2bd26e5d6bba5263d2ba3168bba7835a6474a4ef;hp=714cd0f9f4e012ddba066e9cd4cb19893bbbd290;hb=378bbdf4d64b8b26db55a495ab6ae520ff62e471;hpb=7458406d72d761247dc994f82f9879d9f4ecee56 diff --git a/direct/dtest.c b/direct/dtest.c index 714cd0f..2bd26e5 100644 --- a/direct/dtest.c +++ b/direct/dtest.c @@ -166,6 +166,7 @@ void create_file_of_size(const char *fn,int syze) int h; int n; + char xx[200]; int iterations = (syze + strlen(fn) -1)/ strlen(fn); @@ -173,7 +174,37 @@ void create_file_of_size(const char *fn,int syze) while (iterations > 0) { - yaffs_write(h,fn,strlen(fn)); + sprintf(xx,"%s %8d",fn,iterations); + yaffs_write(h,xx,strlen(xx)); + iterations--; + } + yaffs_close (h); +} + +void verify_file_of_size(const char *fn,int syze) +{ + int h; + int n; + + char xx[200]; + char yy[200]; + int l; + + int iterations = (syze + strlen(fn) -1)/ strlen(fn); + + h = yaffs_open(fn, O_RDONLY, S_IREAD | S_IWRITE); + + while (iterations > 0) + { + sprintf(xx,"%s %8d",fn,iterations); + l = strlen(xx); + + yaffs_read(h,yy,l); + yy[l] = 0; + + if(strcmp(xx,yy)){ + printf("=====>>>>> verification of file %s failed near position %d\n",fn,yaffs_lseek(h,0,SEEK_CUR)); + } iterations--; } yaffs_close (h); @@ -1870,6 +1901,54 @@ void checkpoint_upgrade_test(const char *mountpt,int nmounts) } } +void huge_array_test(const char *mountpt,int n) +{ + + char a[50]; + + + int i; + int j; + int h; + + int fnum; + + sprintf(a,"mount point %s",mountpt); + + + + yaffs_StartUp(); + + yaffs_mount(mountpt); + + while(n>0){ + n--; + fnum = 0; + printf("\n\n START run\n\n"); + while(yaffs_freespace(mountpt) > 25000000){ + sprintf(a,"%s/file%d",mountpt,fnum); + fnum++; + printf("create file %s\n",a); + create_file_of_size(a,10000000); + printf("verifying file %s\n",a); + verify_file_of_size(a,10000000); + } + + printf("\n\n\ verification/deletion\n\n"); + + for(i = 0; i < fnum; i++){ + sprintf(a,"%s/file%d",mountpt,i); + printf("verifying file %s\n",a); + verify_file_of_size(a,10000000); + printf("deleting file %s\n",a); + yaffs_unlink(a); + } + printf("\n\n\ done \n\n"); + + + } +} + int main(int argc, char *argv[]) @@ -1890,7 +1969,9 @@ int main(int argc, char *argv[]) //short_scan_test("/flash/flash",40000,200); //multi_mount_test("/flash/flash",20); //checkpoint_fill_test("/flash/flash",20); - checkpoint_upgrade_test("/flash/flash",20); + //checkpoint_upgrade_test("/flash/flash",20); + huge_array_test("/flash/flash",2); +