You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix flakiness in other.test_unistd_close_noderawfs (#16888)
By looking only for file descriptors pointing to the current test
directory (i.e. exclude the internal file descriptors of Node).
And forward stdin/stderr to `/dev/null`, we are only interested
in `stdout`.
So:
```
find /proc/<PROCESS>/fd -lname "<DIR>*" -printf "%l\n" || true
```
Instead of:
```
find /proc/<PROCESS>/fd -lname "<DIR>*" -printf "%l
" || true
```
Fixes: #16887.
0 commit comments