yaffs More tests for quick tests.
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_mkdir.c
index aedaa8024b5dd4f2bec1db0fee472b5c86b91b09..a0b29b776cf529315f58c499a3b586b88dd47532 100644 (file)
 
 #include "test_yaffs_mkdir.h"
 
-static int handle = 0;
+static int output = -1;
 
 int test_yaffs_mkdir(void)
 {
-       handle = yaffs_mkdir("/yaffs2/new_directory/",O_CREAT | O_RDWR);
-       return handle;
+       output = yaffs_mkdir("/yaffs2/new_directory/",O_CREAT | O_RDWR);
+       return output;
 }
 
 
 int test_yaffs_mkdir_clean(void)
 {
-       if (handle >= 0){
+       if (output >= 0){
                return yaffs_rmdir("/yaffs2/new_directory/");
        } else {
                return 1;       /* the file failed to open so there is no need to close it */