diff options
Diffstat (limited to 'cpp/test/Ice/background/Client.cpp')
-rw-r--r-- | cpp/test/Ice/background/Client.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/test/Ice/background/Client.cpp b/cpp/test/Ice/background/Client.cpp index f0c60ee8128..c4b2e4fe416 100644 --- a/cpp/test/Ice/background/Client.cpp +++ b/cpp/test/Ice/background/Client.cpp @@ -32,8 +32,7 @@ main(int argc, char* argv[]) try { - Ice::InitializationData initData; - initData.properties = Ice::createProperties(argc, argv); + Ice::InitializationData initData = getTestInitData(argc, argv); // // For this test, we want to disable retries. @@ -46,7 +45,7 @@ main(int argc, char* argv[]) initData.properties->setProperty("Ice.Warn.Connections", "0"); initData.properties->setProperty("Ice.MessageSizeMax", "50000"); - + // 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"); |