X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Flib.c;h=e29764565337d63412b29e24768985b74c8930d8;hp=bc004043d11b33b87006fbe941feac8e220ac166;hb=a45194dd1a23a750f4ee8912258243dcdbcac69a;hpb=98535c64952cac84919014d44f9fbe9bf7e1c31d diff --git a/direct/timothy_tests/quick_tests/lib.c b/direct/timothy_tests/quick_tests/lib.c index bc00404..e297645 100644 --- a/direct/timothy_tests/quick_tests/lib.c +++ b/direct/timothy_tests/quick_tests/lib.c @@ -34,6 +34,29 @@ int get_exit_on_error(void) } +int EROFS_setup(void) +{ + int output= -1; + output=yaffs_remount(YAFFS_MOUNT_POINT,1,1); + if (output<0){ + print_message("failed to remount yaffs\n",2); + return -1; + } + return 1; +} + +int EROFS_clean(void) +{ + int output=-1; + output= yaffs_remount(YAFFS_MOUNT_POINT,1,0); + if (output<0){ + print_message("failed to remount yaffs\n",2); + return -1; + } + return 1; +} + + int set_up_ELOOP(void){ int output1=1; int output2=1;