mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-12 18:40:23 +08:00
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>
This commit is contained in:
parent
7d23d8d26f
commit
33b5d21fbd
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user