From 33b5d21fbdc9ea3be9e7b7e4545dffad7d5b894d Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sat, 15 Dec 2018 22:53:47 +0300 Subject: test: nasm-t -- Make read buffer up to 4M Need to implement read on demand but later. Signed-off-by: Cyrill Gorcunov --- travis/nasm-t.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis/nasm-t.py b/travis/nasm-t.py index 14171c19..8a2ddb49 100755 --- a/travis/nasm-t.py +++ b/travis/nasm-t.py @@ -296,8 +296,8 @@ def exec_nasm(desc): test_fail(desc['_test-name'], "Unable to execute test") return None - stderr = pnasm.stderr.read(1048576).decode("utf-8").strip("\n") - stdout = pnasm.stdout.read(1048576).decode("utf-8").strip("\n") + stderr = pnasm.stderr.read(4194304).decode("utf-8").strip("\n") + stdout = pnasm.stdout.read(4194304).decode("utf-8").strip("\n") pnasm.stdout.close() pnasm.stderr.close() -- cgit v1.2.1