diff options
Diffstat (limited to 'csharp/test/Ice/proxy')
-rw-r--r-- | csharp/test/Ice/proxy/Client.cs | 4 | ||||
-rw-r--r-- | csharp/test/Ice/proxy/Collocated.cs | 1 | ||||
-rw-r--r-- | csharp/test/Ice/proxy/Server.cs | 1 | ||||
-rw-r--r-- | csharp/test/Ice/proxy/ServerAMD.cs | 1 | ||||
-rw-r--r-- | csharp/test/Ice/proxy/Test.ice | 2 | ||||
-rw-r--r-- | csharp/test/Ice/proxy/TestAMD.ice | 2 |
6 files changed, 3 insertions, 8 deletions
diff --git a/csharp/test/Ice/proxy/Client.cs b/csharp/test/Ice/proxy/Client.cs index 3a34ae485d4..bc9d6462131 100644 --- a/csharp/test/Ice/proxy/Client.cs +++ b/csharp/test/Ice/proxy/Client.cs @@ -17,9 +17,7 @@ namespace Ice { public override void run(string[] args) { - var properties = createTestProperties(ref args); - properties.setProperty("Ice.Package.Test", "Ice.proxy"); - using(var communicator = initialize(properties)) + using(var communicator = initialize(ref args)) { var myClass = AllTests.allTests(this); myClass.shutdown(); diff --git a/csharp/test/Ice/proxy/Collocated.cs b/csharp/test/Ice/proxy/Collocated.cs index 616219c0fe3..5e388ad36b2 100644 --- a/csharp/test/Ice/proxy/Collocated.cs +++ b/csharp/test/Ice/proxy/Collocated.cs @@ -22,7 +22,6 @@ namespace Ice properties.setProperty("Ice.ThreadPool.Client.Size", "2"); // For nested AMI. properties.setProperty("Ice.ThreadPool.Client.SizeWarn", "0"); properties.setProperty("Ice.Warn.Dispatch", "0"); - properties.setProperty("Ice.Package.Test", "Ice.proxy"); using(var communicator = initialize(properties)) { diff --git a/csharp/test/Ice/proxy/Server.cs b/csharp/test/Ice/proxy/Server.cs index fbde39fc50a..10be79ebc08 100644 --- a/csharp/test/Ice/proxy/Server.cs +++ b/csharp/test/Ice/proxy/Server.cs @@ -23,7 +23,6 @@ namespace Ice // properties.setProperty("Ice.Warn.Connections", "0"); properties.setProperty("Ice.Warn.Dispatch", "0"); - properties.setProperty("Ice.Package.Test", "Ice.proxy"); using(var communicator = initialize(properties)) { diff --git a/csharp/test/Ice/proxy/ServerAMD.cs b/csharp/test/Ice/proxy/ServerAMD.cs index 5bda4da4baa..d061ca372d6 100644 --- a/csharp/test/Ice/proxy/ServerAMD.cs +++ b/csharp/test/Ice/proxy/ServerAMD.cs @@ -23,7 +23,6 @@ namespace Ice // properties.setProperty("Ice.Warn.Connections", "0"); properties.setProperty("Ice.Warn.Dispatch", "0"); - properties.setProperty("Ice.Package.Test", "Ice.proxy"); using(var communicator = initialize(properties)) { communicator.getProperties().setProperty("TestAdapter.Endpoints", getTestEndpoint(0)); diff --git a/csharp/test/Ice/proxy/Test.ice b/csharp/test/Ice/proxy/Test.ice index a49110e4fcc..9026c9174b9 100644 --- a/csharp/test/Ice/proxy/Test.ice +++ b/csharp/test/Ice/proxy/Test.ice @@ -11,7 +11,7 @@ #include <Ice/Current.ice> -[["cs:namespace:Ice.proxy"]] +["cs:namespace:Ice.proxy"] module Test { diff --git a/csharp/test/Ice/proxy/TestAMD.ice b/csharp/test/Ice/proxy/TestAMD.ice index 2d1dcdf815a..c55ab9bd863 100644 --- a/csharp/test/Ice/proxy/TestAMD.ice +++ b/csharp/test/Ice/proxy/TestAMD.ice @@ -11,7 +11,7 @@ #include <Ice/Current.ice> -[["cs:namespace:Ice.proxy.AMD"]] +["cs:namespace:Ice.proxy.AMD"] module Test { |