mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue