yaffs Adding new tests to direct/timothy_tests/quicktests/
[yaffs2.git] / direct / timothy_tests / quick_tests / test_yaffs_stat_ENOTDIR.c
index db38d16cc36b3581bdf52e8e08f12c1cb333d6bb..c4a59105b1214807eb3ab490303ceb83704b47ec 100644 (file)
 
 #include "test_yaffs_stat_ENOTDIR.h"
 
-int test_yaffs_stat_ENOTDIR(void){
+int test_yaffs_stat_ENOTDIR(void)
+{
        int error_code=0;
        struct yaffs_stat stat;
        int output=0;
        char text[100];
        text[0] ='\0';
-       output=yaffs_stat("/non-existing-dir/foo", &stat);;
+       output=yaffs_stat("/yaffs2/foo/file", &stat);;
        if (output<0){ 
                error_code=yaffs_get_error();
                if (abs(error_code)==ENOTDIR){
                        return 1;
-               }
-               else {
-                       printf("returned error does not match the the expected error\n");
+               } else {
+                       print_message("returned error does not match the the expected error\n",2);
                        return -1;
                }
-       }
-       else{
-               printf("stated a non-existing file (which is a bad thing)\n");
+       } else {
+               print_message("stated a non-existing file (which is a bad thing)\n",2);
                return -1;
        }       
 }
 
-int test_yaffs_stat_ENOTDIR_clean(void){
+int test_yaffs_stat_ENOTDIR_clean(void)
+{
        return 1;
 }