Fix copyright
[yaffs2.git] / direct / test-framework / timothy_tests / quick_tests / quick_tests.c
index 6f91ffa2ab4491c63ad012018ba2714fce34feee..e015d02dc5ef73567ff741157342051d517b8bc4 100644 (file)
@@ -1,8 +1,7 @@
 /*
  * YAFFS: Yet another FFS. A NAND-flash specific file system.
  *
- * Copyright (C) 2002-2011 Aleph One Ltd.
- *   for Toby Churchill Ltd and Brightstar Engineering
+ * Copyright (C) 2002-2018 Aleph One Ltd.
  *
  * Created by Timothy Manning <timothy@yaffs.net>
  *
@@ -81,8 +80,8 @@ void run_test(int x)
        int y= 0;
        char message[200];
        message[0]='\0';
-       printf ("making test dir %d\n",yaffs_mkdir(TEST_DIR,S_IWRITE | S_IREAD));
 
+       yaffs_mkdir(TEST_DIR,S_IWRITE | S_IREAD);
        yaffs_set_error(0);     /*reset the last error to 0 */
        //printf("foo exists %d\n",test_yaffs_open());
        sprintf(message,"\nrunning test: %s \n",test_list[x].name_of_test);
@@ -95,7 +94,7 @@ void run_test(int x)
                num_of_tests_pass++;
        } else {
                /*test is assumed to have failed*/
-               //printf("test failed\n");
+               printf("test failed\n");
                sprintf(message,"test: %s failed\n",test_list[x].name_of_test);
                print_message(message,1);               
                num_of_tests_failed ++;