1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Merge pull request #3797 from niyaznigmatullin/fix_broken_pipe_test_bytes_oseek_bytes_trunc_oflag

test/dd: fix broken pipe in test_bytes_oseek_bytes_trunc_oflag
This commit is contained in:
Sylvestre Ledru 2022-08-09 00:17:06 +02:00 committed by GitHub
commit 2a6371fff8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1155,6 +1155,7 @@ fn test_bytes_oseek_bytes_trunc_oflag() {
new_ucmd!()
.args(&["oseek=8", "oflag=seek_bytes", "bs=2", "count=0"])
.pipe_in("abcdefghijklm")
.ignore_stdin_write_error()
.succeeds()
.stdout_is_fixture_bytes("dd-bytes-null-trunc.spec");
}