| 171 | } |
| 172 | |
| 173 | static void test_dfs_unlink(void) |
| 174 | { |
| 175 | #ifndef RT_USING_DFS_V2 |
| 176 | // DFSV1 may have issues with unlink |
| 177 | uassert_true(RT_TRUE); |
| 178 | #else |
| 179 | uassert_true(dfs_file_unlink(TEST_FILE) == 0); |
| 180 | #endif |
| 181 | } |
| 182 | |
| 183 | static void test_dfs_rename(void) |
| 184 | { |
nothing calls this directly
no test coverage detected