yaffs Added a new test for yaffs functions via linux command calls.
[yaffs2.git] / direct / timothy_tests / linux_tests / mkdir_link.c
diff --git a/direct/timothy_tests/linux_tests/mkdir_link.c b/direct/timothy_tests/linux_tests/mkdir_link.c
deleted file mode 100644 (file)
index d466958..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-#include <errno.h>
-
-
-int main()
-{
-       int output=0;
-       int error_code =0 ;
-       output =symlink("timothy/home/tests/new_dir" "timothy/home/test/new_dir_link");
-       output=mkdir("timothy/home/test/new_dir_link" );
-       printf("output %d\n",output);
-       if (output <0 ) {
-               error_code = errno;
-               printf("error code %d\n",error_code);
-               printf("Error description is : %s\n",strerror(errno));
-       }
-       return 0;
-}