From d1b867f7b55b9ab1221bd9dc3174dd045b08a29f Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 21 Nov 2020 12:41:18 -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 12e5bd975..8537815a2 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, },