summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/certificateVerification/Client.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-06-04 07:47:51 +0000
committerMichi Henning <michi@zeroc.com>2003-06-04 07:47:51 +0000
commit1eb658e1f0b7a267ed44e2c5dd65db2cc933ca26 (patch)
treea4fc4782d77aa48536b720b30688debe04e072fa /cpp/test/IceSSL/certificateVerification/Client.cpp
parentRH9 notes (diff)
downloadice-1eb658e1f0b7a267ed44e2c5dd65db2cc933ca26.tar.bz2
ice-1eb658e1f0b7a267ed44e2c5dd65db2cc933ca26.tar.xz
ice-1eb658e1f0b7a267ed44e2c5dd65db2cc933ca26.zip
- Added a test to the Slice parser to complain if an operation on a local
interface or class has an exception specification. - Added a test to the property parsing code to print a warning on stderr if a property is not recognized. This prevents silly typos, such as "Ice.config=MyFile" (instead of "Ice.Config=MyFile") from slipping through undetected.
Diffstat (limited to 'cpp/test/IceSSL/certificateVerification/Client.cpp')
-rw-r--r--cpp/test/IceSSL/certificateVerification/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceSSL/certificateVerification/Client.cpp b/cpp/test/IceSSL/certificateVerification/Client.cpp
index 2681fb3b4ef..298a58a684c 100644
--- a/cpp/test/IceSSL/certificateVerification/Client.cpp
+++ b/cpp/test/IceSSL/certificateVerification/Client.cpp
@@ -44,8 +44,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
Ice::PropertiesPtr properties = communicator->getProperties();
// Use test related paths - override values in TestUtil.py
- std::string clientCertPath = properties->getProperty("IceSSL.Test.Client.CertPath");
- std::string serverCertPath = properties->getProperty("IceSSL.Test.Server.CertPath");
+ std::string clientCertPath = properties->getProperty("IceSSL.Client.CertPath.Test");
+ std::string serverCertPath = properties->getProperty("IceSSL.Server.CertPath.Test");
properties->setProperty("IceSSL.Client.CertPath", clientCertPath);
properties->setProperty("IceSSL.Server.CertPath", serverCertPath);