X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_truncate.c;h=57511edf20c19e0b2846a07209d4101826ca5f56;hp=300c340b93e2b031bdfac412a3d4558a29fd3cbb;hb=90c66937f76d1e4ce1fb43aed91219c4f1e443f1;hpb=98fdd77e12f7a14163568906da90b11f90f9f3e8 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_truncate.c b/direct/timothy_tests/quick_tests/test_yaffs_truncate.c index 300c340..57511ed 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_truncate.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_truncate.c @@ -1,7 +1,8 @@ #include "test_yaffs_truncate.h" +static int handle=0; int test_yaffs_truncate(void){ - int handle=test_open_file(); + handle=test_yaffs_open_file(); if (handle>0){ return yaffs_truncate(FILE_PATH,FILE_SIZE_TRUNCATED ); } @@ -13,9 +14,13 @@ int test_yaffs_truncate(void){ int test_yaffs_truncate_clean(void){ /* change file size back to orignal size */ - int handle=test_open_file(); + int handle=test_yaffs_open_file(); + int output=0; if (handle>0){ - return yaffs_truncate(FILE_PATH,FILE_SIZE ); + output= yaffs_truncate(FILE_PATH,FILE_SIZE ); + if (output>=0){ + return yaffs_close(handle); + } } else { printf("error opening file in clean function");