From d81b999fa911819e9a29b359f4f02fe450e1602c Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 21 Nov 2020 00:00:50 -0500 Subject: [PATCH] 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. --- test/basetest/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/basetest/utils.py b/test/basetest/utils.py index 46d92595a..9d25479f0 100644 --- a/test/basetest/utils.py +++ b/test/basetest/utils.py @@ -249,7 +249,6 @@ def run_cmd_wait(cmd, input=None, stdout=PIPE, stderr=PIPE, "stdin": stdin, "stdout": stdout, "stderr": stderr, - "bufsize": 1, "close_fds": ON_POSIX, "env": env, },