Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information