| 184 | } |
| 185 | |
| 186 | static void test_posix_rmdir(void) |
| 187 | { |
| 188 | int rst = rmdir(TEST_DIR); |
| 189 | if (rst != 0) |
| 190 | { |
| 191 | rt_kprintf("[ERROR] rmdir failed with result = %d\n", rst); |
| 192 | } |
| 193 | uassert_true(rst == 0); |
| 194 | } |
| 195 | |
| 196 | static void test_posix_rename(void) |
| 197 | { |
nothing calls this directly
no test coverage detected