diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-12-12 10:43:47 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-12-12 10:43:47 +0100 |
commit | c60fa3d144434ad189f24866ac120425b76f4727 (patch) | |
tree | d385504629f784d76b2652f335af1129b6a72b99 /cpp/test/Ice/background/Client.cpp | |
parent | Fixed ICE-6142: oneway batch operations didn't throw (diff) | |
download | ice-c60fa3d144434ad189f24866ac120425b76f4727.tar.bz2 ice-c60fa3d144434ad189f24866ac120425b76f4727.tar.xz ice-c60fa3d144434ad189f24866ac120425b76f4727.zip |
Fixed ICE-6073 - background test failure on Ubuntu
Diffstat (limited to 'cpp/test/Ice/background/Client.cpp')
-rw-r--r-- | cpp/test/Ice/background/Client.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpp/test/Ice/background/Client.cpp b/cpp/test/Ice/background/Client.cpp index f143fbb6400..f10b812fbeb 100644 --- a/cpp/test/Ice/background/Client.cpp +++ b/cpp/test/Ice/background/Client.cpp @@ -47,10 +47,9 @@ main(int argc, char* argv[]) initData.properties->setProperty("Ice.MessageSizeMax", "50000"); - // - // Workaround for OpenSSL SSL_write non blocking - // - initData.properties->setProperty("Ice.TCP.SndSize", "256000"); + // This test relies on filling the TCP send/recv buffer, so + // we rely on a fixed value for these buffers. + initData.properties->setProperty("Ice.TCP.SndSize", "50000"); // // Setup the test transport plug-in. |