yaffs More tests added to direct/timothy_tests/quick_tests
[yaffs2.git] / direct / timothy_tests / quick_tests / lib.c
index bc004043d11b33b87006fbe941feac8e220ac166..e29764565337d63412b29e24768985b74c8930d8 100644 (file)
@@ -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;