diff options
author | Marc Laukien <marc@zeroc.com> | 2004-10-29 15:02:12 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-10-29 15:02:12 +0000 |
commit | 34039870fa55d927814fccaa9c8f0117af832235 (patch) | |
tree | a75765e2cc78b8e66b3a1430008ce7b7bee2e71d /cpp/test/Ice/operations/Client.cpp | |
parent | Outgoing::abort() (diff) | |
download | ice-34039870fa55d927814fccaa9c8f0117af832235.tar.bz2 ice-34039870fa55d927814fccaa9c8f0117af832235.tar.xz ice-34039870fa55d927814fccaa9c8f0117af832235.zip |
more abort for batch oneway stuff
Diffstat (limited to 'cpp/test/Ice/operations/Client.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Client.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/Client.cpp b/cpp/test/Ice/operations/Client.cpp index d43deacf936..0ae48af6acc 100644 --- a/cpp/test/Ice/operations/Client.cpp +++ b/cpp/test/Ice/operations/Client.cpp @@ -50,6 +50,13 @@ main(int argc, char* argv[]) properties->setProperty("Ice.ThreadPool.Client.Size", "2"); properties->setProperty("Ice.ThreadPool.Client.SizeWarn", "0"); + // + // We must set MessageSizeMax to an explicit values, because + // we run tests to check whether Ice.MemoryLimitException is + // raised as expected. + // + properties->setProperty("Ice.MessageSizeMax", "100"); + communicator = Ice::initialize(argc, argv); status = run(argc, argv, communicator); } |