Pre-existing flake, first noted in the #48 session and hit again 2026-07-06 during an unrelated PR's cargo test --all run: non_interactive_stdin_is_dev_null failed with stdin should be /dev/null: socket:[...] under peak parallel load, then passed in isolation (and historically passes full-binary and 4× reruns). The #[ignore]'d sibling test notes the same stdin-harness sensitivity.
Worth a flake-hardening pass: either serialize the stdin-sensitive externals behind a mutex, or make the assertion tolerant of the harness's socket-stdin when the test runner itself owns fd 0.
Pre-existing flake, first noted in the #48 session and hit again 2026-07-06 during an unrelated PR's
cargo test --allrun:non_interactive_stdin_is_dev_nullfailed withstdin should be /dev/null: socket:[...]under peak parallel load, then passed in isolation (and historically passes full-binary and 4× reruns). The#[ignore]'d sibling test notes the same stdin-harness sensitivity.Worth a flake-hardening pass: either serialize the stdin-sensitive externals behind a mutex, or make the assertion tolerant of the harness's socket-stdin when the test runner itself owns fd 0.