diff options
Diffstat (limited to 'objective-c/test/Ice/timeout/Client.m')
-rw-r--r-- | objective-c/test/Ice/timeout/Client.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objective-c/test/Ice/timeout/Client.m b/objective-c/test/Ice/timeout/Client.m index fcebbd09aa8..bf9c542f5b5 100644 --- a/objective-c/test/Ice/timeout/Client.m +++ b/objective-c/test/Ice/timeout/Client.m @@ -48,6 +48,12 @@ main(int argc, char* argv[]) [initData.properties setProperty:@"Ice.Override.ConnectTimeout" value:@""]; // + // Limit the send buffer size, this test relies on the socket + // send() blocking after sending a given amount of data. + // + [initData.properties setProperty:@"Ice.TCP.SndSize" value:@"50000"]; + + // // This test kills connections, so we don't want warnings. // [initData.properties setProperty:@"Ice.Warn.Connections" value:@"0"]; |