1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #8312 from yuankunzhang/tr-broken-pipe

tr: restore default action of sigpipe
This commit is contained in:
Daniel Hofstetter 2025-07-05 14:34:01 +02:00 committed by GitHub
commit a687fbf2b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 9 deletions

View file

@ -1561,6 +1561,5 @@ fn test_broken_pipe_no_error() {
.args(&["e", "a"])
.pipe_in("hello".repeat(100))
.run_stdout_starts_with(b"")
.success()
.stderr_is("");
.fails_silently();
}