-
Notifications
You must be signed in to change notification settings - Fork 5.9k
fix(ext/node): prevent derefencing symlinks on fs.rm
#31886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| WSAENOTSOCK => "ENOTSOCK", | ||
| ERROR_NOT_SUPPORTED => "ENOTSUP", | ||
| ERROR_BROKEN_PIPE => "EOF", | ||
| ERROR_ACCESS_DENIED => "EPERM", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| "parallel/test-fs-rm.js": { | ||
| "darwin": false, | ||
| "windows": false | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
macos and windows fail on these cases: https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-fs-rm.js#L513-L562. since it's not related with the issue, I think it's better to solve it on a separate PR
Closes #31840 and also addresses
prefer-primordialsrule