[nasm:nasm-2.15.xx-travis] nasm-t: add fixme about data reading

nasm-bot for Cyrill Gorcunov gorcunov at gmail.com
Wed Sep 16 15:24:11 PDT 2020


Commit-ID:  f0c62622972506eed1cb893a6e0c636e7e8030a0
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=f0c62622972506eed1cb893a6e0c636e7e8030a0
Author:     Cyrill Gorcunov <gorcunov at gmail.com>
AuthorDate: Thu, 17 Sep 2020 01:15:17 +0300
Committer:  Cyrill Gorcunov <gorcunov at gmail.com>
CommitDate: Thu, 17 Sep 2020 01:15:17 +0300

nasm-t: add fixme about data reading

Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>


---
 travis/nasm-t.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/travis/nasm-t.py b/travis/nasm-t.py
index ac976431..8345968c 100755
--- a/travis/nasm-t.py
+++ b/travis/nasm-t.py
@@ -361,6 +361,9 @@ def exec_nasm(desc):
         test_fail(desc['_test-name'], "Unable to execute test")
         return None
 
+    #
+    # FIXME: For now 4M buffer is enough but
+    # better provide reading in a cycle.
     stderr = pnasm.stderr.read(4194304).decode("utf-8").strip("\n")
     stdout = pnasm.stdout.read(4194304).decode("utf-8").strip("\n")
 


More information about the Nasm-commits mailing list