tests: Do not require line buffering

Test runner complains about it not being supported with binary files and
it does not look like it affects any tests in the first place anyway.
This commit is contained in:
Tomas Babej 2020-11-21 00:00:50 -05:00 committed by Paul Beckingham
parent 02db131fa1
commit d81b999fa9

View file

@ -249,7 +249,6 @@ def run_cmd_wait(cmd, input=None, stdout=PIPE, stderr=PIPE,
"stdin": stdin, "stdin": stdin,
"stdout": stdout, "stdout": stdout,
"stderr": stderr, "stderr": stderr,
"bufsize": 1,
"close_fds": ON_POSIX, "close_fds": ON_POSIX,
"env": env, "env": env,
}, },