diff options
author | Jose <pepone@users.noreply.github.com> | 2019-09-10 22:03:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 22:03:44 +0200 |
commit | c7b9f79e8bb324dd407eba8503c24f7bba012844 (patch) | |
tree | 934b4c0938d6145db919f41bb3851af83ee14444 /cpp/test | |
parent | Dispose the X509Chain with .NET Standard 2.0 - Close #518 (diff) | |
download | ice-c7b9f79e8bb324dd407eba8503c24f7bba012844.tar.bz2 ice-c7b9f79e8bb324dd407eba8503c24f7bba012844.tar.xz ice-c7b9f79e8bb324dd407eba8503c24f7bba012844.zip |
Fixes for endpoint to string conversion - Close #517 (#519)
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/Ice/proxy/AllTests.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/proxy/AllTests.cpp b/cpp/test/Ice/proxy/AllTests.cpp index b5c0d8c2a09..293f09a9b6b 100644 --- a/cpp/test/Ice/proxy/AllTests.cpp +++ b/cpp/test/Ice/proxy/AllTests.cpp @@ -236,6 +236,12 @@ allTests(Test::TestHelper* helper) b1 = communicator->stringToProxy("test -p 6.5 -e 1.0"); test(b1->ice_toString() == "test -t -p 6.5 -e 1.0"); + b1 = communicator->stringToProxy("test:tcp --sourceAddress \"::1\""); + test(Ice::targetEqualTo(b1, communicator->stringToProxy(b1->ice_toString()))); + + b1 = communicator->stringToProxy("test:udp --sourceAddress \"::1\" --interface \"0:0:0:0:0:0:0:1%lo\""); + test(Ice::targetEqualTo(b1, communicator->stringToProxy(b1->ice_toString()))); + try { communicator->stringToProxy("test:tcp@adapterId"); |