test/dd: add ignore_stdin_write_error, because count=0 and dd doesn't

read anything
This commit is contained in:
Niyaz Nigmatullin 2022-08-08 22:44:59 +03:00
parent 5b2313de78
commit 161fc6b642

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");
}