diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2020-09-17 01:15:17 +0300 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2020-09-18 00:49:11 +0300 |
commit | 2f8a50d11e9b2059c6866da7de3737e71d7c7398 (patch) | |
tree | 1b4cd6c5db7d240141f7bedea3ad36528e8a0dc1 /travis | |
parent | f77ec1c8032ebd559dbcb2070c8356d688e261cc (diff) | |
download | nasm-2f8a50d11e9b2059c6866da7de3737e71d7c7398.tar.gz nasm-2f8a50d11e9b2059c6866da7de3737e71d7c7398.tar.xz nasm-2f8a50d11e9b2059c6866da7de3737e71d7c7398.zip |
nasm-t: add fixme about data reading
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/nasm-t.py | 3 |
1 files changed, 3 insertions, 0 deletions
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") |