diff options
author | Jose <jose@zeroc.com> | 2017-01-02 18:06:44 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-02 18:06:44 +0100 |
commit | 2df05d130ae51a65f51c593800ad722d533f5df3 (patch) | |
tree | 1c4c0c03245a69cdefb949a0060e5642e00aaeed /cpp/test/Ice/proxy/AllTests.cpp | |
parent | Update VisualStdio Ice project filters (diff) | |
download | ice-2df05d130ae51a65f51c593800ad722d533f5df3.tar.bz2 ice-2df05d130ae51a65f51c593800ad722d533f5df3.tar.xz ice-2df05d130ae51a65f51c593800ad722d533f5df3.zip |
Fixed (ICE-7477) - Use native Base64 encode/decode
Diffstat (limited to 'cpp/test/Ice/proxy/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/proxy/AllTests.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/test/Ice/proxy/AllTests.cpp b/cpp/test/Ice/proxy/AllTests.cpp index 269988a9119..f4c4176dfd2 100644 --- a/cpp/test/Ice/proxy/AllTests.cpp +++ b/cpp/test/Ice/proxy/AllTests.cpp @@ -1128,7 +1128,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Invalid -x option - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 99 -v abc -x abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 99 -v abcd -x abc"); test(false); } catch(const Ice::EndpointParseException&) @@ -1148,7 +1148,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Repeated -t - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 1 -t 1 -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 1 -t 1 -v abcd"); test(false); } catch(const Ice::EndpointParseException&) @@ -1158,7 +1158,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Repeated -v - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 1 -v abc -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t 1 -v abcd -v abcd"); test(false); } catch(const Ice::EndpointParseException&) @@ -1168,7 +1168,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Missing -t - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -v abcd"); test(false); } catch(const Ice::EndpointParseException&) @@ -1188,7 +1188,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Missing arg for -t - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t -v abcd"); test(false); } catch(const Ice::EndpointParseException&) @@ -1208,7 +1208,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // Not a number for -t - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t x -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t x -v abcd"); test(false); } catch(const Ice::EndpointParseException&) @@ -1218,7 +1218,7 @@ allTests(const Ice::CommunicatorPtr& communicator) try { // < 0 for -t - Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t -1 -v abc"); + Ice::ObjectPrxPtr p = communicator->stringToProxy("id:opaque -t -1 -v abcd"); test(false); } catch(const Ice::EndpointParseException&) |