diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-04-04 17:55:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-04-04 17:55:00 +0000 |
commit | f8febcc2afd60107c209b498ff181e683617f26c (patch) | |
tree | 5157e55e81c895fe37868b633058d40f759de186 /cpp | |
parent | Windows fix (diff) | |
download | ice-f8febcc2afd60107c209b498ff181e683617f26c.tar.bz2 ice-f8febcc2afd60107c209b498ff181e683617f26c.tar.xz ice-f8febcc2afd60107c209b498ff181e683617f26c.zip |
disable warnings
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/Ice/timeout/Server.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/test/Ice/timeout/Server.cpp b/cpp/test/Ice/timeout/Server.cpp index 6089aa8f3f2..a8439b58687 100644 --- a/cpp/test/Ice/timeout/Server.cpp +++ b/cpp/test/Ice/timeout/Server.cpp @@ -32,6 +32,13 @@ main(int argc, char* argv[]) try { + Ice::PropertiesPtr properties = Ice::getDefaultProperties(argc, argv); + + // + // This test kills connections, so we don't want warnings. + // + properties->setProperty("Ice.Warn.Connections", "0"); + communicator = Ice::initialize(argc, argv); status = run(argc, argv, communicator); } |