diff options
author | Michi Henning <michi@zeroc.com> | 2003-06-04 07:47:51 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-06-04 07:47:51 +0000 |
commit | 1eb658e1f0b7a267ed44e2c5dd65db2cc933ca26 (patch) | |
tree | a4fc4782d77aa48536b720b30688debe04e072fa /cpp/test/IceSSL/certificateVerification/Client.cpp | |
parent | RH9 notes (diff) | |
download | ice-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.cpp | 4 |
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); |