1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: rmdir can return EEXIST or ENOTEMPTY

POSIX allows `rmdir` to return `EEXIST` or `ENOTEMPTY` for a non-empty
directory, so the test needs to allow both.
This commit is contained in:
Richard Lau 2024-08-07 12:20:37 +00:00
parent 5537d6a689
commit 88ab6e78da

View File

@ -1084,7 +1084,7 @@ TEST_IMPL(fs_posix_delete) {
/* should not be possible to delete the non-empty dir */
r = uv_fs_rmdir(NULL, &rmdir_req, "test_dir", NULL);
ASSERT_EQ(r, UV_ENOTEMPTY);
ASSERT((r == UV_ENOTEMPTY) || (r == UV_EEXIST));
ASSERT_EQ(r, rmdir_req.result);
uv_fs_req_cleanup(&rmdir_req);