diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-10-24 09:33:14 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-10-24 09:33:14 -0700 |
commit | ed8b1054e0c0881c5eb2f0b732c1ef6a8614a93d (patch) | |
tree | 99b5637028fec950aa1754b75a22c93139a05511 | |
parent | Fixed (ICE-5784) - JS test/Ice/acm fails with --ipv6 (diff) | |
download | ice-ed8b1054e0c0881c5eb2f0b732c1ef6a8614a93d.tar.bz2 ice-ed8b1054e0c0881c5eb2f0b732c1ef6a8614a93d.tar.xz ice-ed8b1054e0c0881c5eb2f0b732c1ef6a8614a93d.zip |
ICE-5778 - ruby test/Ice/info failure
-rw-r--r-- | rb/test/Ice/info/AllTests.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/rb/test/Ice/info/AllTests.rb b/rb/test/Ice/info/AllTests.rb index d3f769da45d..33fc29b6826 100644 --- a/rb/test/Ice/info/AllTests.rb +++ b/rb/test/Ice/info/AllTests.rb @@ -26,9 +26,13 @@ def allTests(communicator) test(ipEndpoint.compress) test(!ipEndpoint.datagram()) test((ipEndpoint.type() == Ice::TCPEndpointType && !ipEndpoint.secure()) || - (ipEndpoint.type() == 2 && ipEndpoint.secure())) + (ipEndpoint.type() == 2 && ipEndpoint.secure()) || + (ipEndpoint.type() == 4 && !ipEndpoint.secure()) || + (ipEndpoint.type() == 5 && ipEndpoint.secure())) test((ipEndpoint.type() == Ice::TCPEndpointType && ipEndpoint.is_a?(Ice::TCPEndpointInfo)) || - (ipEndpoint.type() == 2)) + (ipEndpoint.type() == 2) || + (ipEndpoint.type() == 4) || + (ipEndpoint.type() == 5)) udpEndpoint = endps[1].getInfo() test(udpEndpoint.is_a?(Ice::UDPEndpointInfo)); |