summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-07-28 13:41:18 +0200
committerVolker Lendecke <vlendec@samba.org>2011-07-28 15:07:40 +0200
commit553124a663379335b401a56e498432d198b3d8e3 (patch)
treed27d5e8e0ad6efeb11210c33dc21cba149f3b0b1 /source3/torture
parent0ad8c12d48d1d7bc57b8def7b638846499104265 (diff)
downloadsamba-553124a663379335b401a56e498432d198b3d8e3.tar.gz
samba-553124a663379335b401a56e498432d198b3d8e3.tar.bz2
samba-553124a663379335b401a56e498432d198b3d8e3.zip
s3: In the async echo test, write 65k
This leads to the writev from echo responder child to parent to only deliver a partial blob and thus excercises the retry code. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Jul 28 15:07:40 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/test_async_echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/test_async_echo.c b/source3/torture/test_async_echo.c
index f1d44ee681..eb1f1d4587 100644
--- a/source3/torture/test_async_echo.c
+++ b/source3/torture/test_async_echo.c
@@ -69,7 +69,7 @@ bool run_async_echo(int dummy)
NTSTATUS status;
bool ret = false;
int i, num_reqs;
- uint8_t buf[32768];
+ uint8_t buf[65536];
printf("Starting ASYNC_ECHO\n");