-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
test: Update cwd-enoent tests for AIX #2909
Conversation
On AIX you can not remove a directory that you are currently inside of as it results in an EBUSY error "EBUSY: resource busy or locked". Updated the tests accordingly so that they are skipped on AIX.
The code looks fine to me. @mhdawson LGTY? |
LGTM FWIW. |
LGTM I asked Imran (iWuzHere ) to look at this as he is on the same team as me, and we've validated on our AIX boxes. |
@mhdawson Can you s/Update/update/ in the commit log before landing? Thanks. |
Some failures in CI run, but not related to what is being changed by this commit and see in previous CI runs, will land |
On AIX you can not remove a directory that you are currently inside of as it results in an EBUSY error. "EBUSY: resource busy or locked". Updated the tests accordingly so that they are skipped on AIX. PR-URL: #2909 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
landed as 1cfee8e |
On AIX you can not remove a directory that you are currently inside of as it results in an EBUSY error. "EBUSY: resource busy or locked". Updated the tests accordingly so that they are skipped on AIX. PR-URL: #2909 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
landed in lts-v4.x-staging as 3e09dcf |
On AIX you can not remove a directory that you are currently inside of
as it results in an EBUSY error "EBUSY: resource busy or locked".
Updated the tests accordingly so that they are skipped on AIX.