diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-06-05 11:27:34 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-06-05 11:27:34 +0200 |
commit | 45640a1647e891beccb1d5c5f9f4de92d5a2ebb0 (patch) | |
tree | a850ed20082c1dec5d380c11405fbe092988969d /cpp/test/Ice/timeout/Client.cpp | |
parent | Removed bogus assert(false) in IceUtil::NullHandleException constructor (diff) | |
download | ice-45640a1647e891beccb1d5c5f9f4de92d5a2ebb0.tar.bz2 ice-45640a1647e891beccb1d5c5f9f4de92d5a2ebb0.tar.xz ice-45640a1647e891beccb1d5c5f9f4de92d5a2ebb0.zip |
Increased sequence size for timeout & metrics tests to prevent sporadic failures
Diffstat (limited to 'cpp/test/Ice/timeout/Client.cpp')
-rw-r--r-- | cpp/test/Ice/timeout/Client.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/timeout/Client.cpp b/cpp/test/Ice/timeout/Client.cpp index ce07b575470..d0df0c07416 100644 --- a/cpp/test/Ice/timeout/Client.cpp +++ b/cpp/test/Ice/timeout/Client.cpp @@ -46,6 +46,12 @@ main(int argc, char* argv[]) // initData.properties->setProperty("Ice.Warn.Connections", "0"); + // + // We need to send messages large enough to cause the transport + // buffers to fill up. + // + initData.properties->setProperty("Ice.MessageSizeMax", "10000"); + communicator = Ice::initialize(argc, argv, initData); status = run(argc, argv, communicator); } |