summaryrefslogtreecommitdiff
path: root/travis
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2018-12-15 22:53:47 +0300
committerCyrill Gorcunov <gorcunov@gmail.com>2018-12-15 22:56:18 +0300
commit33b5d21fbdc9ea3be9e7b7e4545dffad7d5b894d (patch)
tree521d5a004eda446ebab30a8cfbb7113237d33fc1 /travis
parent7d23d8d26f2c68c0fab7e9f1e1fab7efefd52dd4 (diff)
downloadnasm-33b5d21fbdc9ea3be9e7b7e4545dffad7d5b894d.tar.gz
test: nasm-t -- Make read buffer up to 4M
Need to implement read on demand but later. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/nasm-t.py4
1 files 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()