Fix unmatched temporary buffer allocations
[yaffs2.git] / direct / test-framework / unit_tests / quick_tests / test_yaffs_symlink.c
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Timothy Manning <timothy@yaffs.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include "test_yaffs_symlink.h"
14
15 static int output = 0;
16
17 int test_yaffs_symlink(void)
18 {
19         if (0 == yaffs_access(SYMLINK_PATH,0)){
20                 output=yaffs_unlink(SYMLINK_PATH);
21                 if (output<0){
22                         print_message("failed to unlink symlink\n",2);
23                         return -1;
24                 }
25         }
26         output = yaffs_symlink(FILE_PATH,SYMLINK_PATH);
27         return output;
28 }
29
30
31 int test_yaffs_symlink_clean(void)
32 {
33         if (output >= 0){
34                 return yaffs_unlink(SYMLINK_PATH);
35         } else {
36                 return 1;       /* the file failed to open so there is no need to close it */
37         }
38 }
39