diff options
Diffstat (limited to 'csharp/test/Ice/ami/Server.cs')
-rw-r--r-- | csharp/test/Ice/ami/Server.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/csharp/test/Ice/ami/Server.cs b/csharp/test/Ice/ami/Server.cs index d07fb4e30bf..0202e74127c 100644 --- a/csharp/test/Ice/ami/Server.cs +++ b/csharp/test/Ice/ami/Server.cs @@ -47,11 +47,16 @@ public class Server : TestCommon.Application initData.properties.setProperty("Ice.Default.CollocationOptimized", "0"); // + // This test kills connections, so we don't want warnings. + // + initData.properties.setProperty("Ice.Warn.Connections", "0"); + + // // Limit the recv buffer size, this test relies on the socket // send() blocking after sending a given amount of data. // initData.properties.setProperty("Ice.TCP.RcvSize", "50000"); - return initData; + return initData; } public static int Main(string[] args) |