summaryrefslogtreecommitdiff
path: root/java/test/IceSSL/configuration/Client.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2007-12-19 22:06:38 +0100
committerBenoit Foucher <benoit@zeroc.com>2007-12-19 22:06:38 +0100
commitf6121ea342641eb36f7cd67c7c877a1c70ec3055 (patch)
treeb545f3a2548b81fd8dd56a87a58f98b992c0066b /java/test/IceSSL/configuration/Client.java
parentMerge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff)
downloadice-f6121ea342641eb36f7cd67c7c877a1c70ec3055.tar.bz2
ice-f6121ea342641eb36f7cd67c7c877a1c70ec3055.tar.xz
ice-f6121ea342641eb36f7cd67c7c877a1c70ec3055.zip
- Merge IPv6 support from Dwayne's branch.
- Reviewed and fixed IPv6 bugs. - Fixed bug in the outgoing connection factory where an assert could be triggered if the proxy contained identical endpoints
Diffstat (limited to 'java/test/IceSSL/configuration/Client.java')
-rw-r--r--java/test/IceSSL/configuration/Client.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/java/test/IceSSL/configuration/Client.java b/java/test/IceSSL/configuration/Client.java
index 6479e180286..a330f31e53c 100644
--- a/java/test/IceSSL/configuration/Client.java
+++ b/java/test/IceSSL/configuration/Client.java
@@ -20,18 +20,7 @@ public class Client
Test.ServerFactoryPrx factory;
- //
- // If we're using the JDK 1.4 plugin, we can only use thread-per-connection.
- // Otherwise, we run the test twice, once for each concurrency model.
- //
- System.out.println("testing with thread-per-connection.");
- factory = AllTests.allTests(communicator, args[0], false);
-
- if(!IceSSL.Util.jdkTarget.equals("1.4"))
- {
- System.out.println("testing with thread pool.");
- AllTests.allTests(communicator, args[0], true);
- }
+ factory = AllTests.allTests(communicator, args[0]);
factory.shutdown();