diff options
author | Jose <jose@zeroc.com> | 2016-11-25 14:42:13 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-11-25 14:42:13 +0100 |
commit | 902decf2bd23bedfd52c6975bc325cda27a23b12 (patch) | |
tree | 80b77b4d0aa7a6e6765d6d4a52911a8136c59a1b /cpp/test/uwp/MainPage.xaml.cpp | |
parent | Fixed allTests.py exit status (diff) | |
download | ice-902decf2bd23bedfd52c6975bc325cda27a23b12.tar.bz2 ice-902decf2bd23bedfd52c6975bc325cda27a23b12.tar.xz ice-902decf2bd23bedfd52c6975bc325cda27a23b12.zip |
UWP test suite updates:
- Set IceSSL.CertFile when running test suite with SSL/WSS
protocols.
- Added missing optional_XXX DLL's to deploy with test suite
application.
Diffstat (limited to 'cpp/test/uwp/MainPage.xaml.cpp')
-rw-r--r-- | cpp/test/uwp/MainPage.xaml.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cpp/test/uwp/MainPage.xaml.cpp b/cpp/test/uwp/MainPage.xaml.cpp index b33ea5f98b7..690490859eb 100644 --- a/cpp/test/uwp/MainPage.xaml.cpp +++ b/cpp/test/uwp/MainPage.xaml.cpp @@ -365,6 +365,12 @@ Runnable::run() args.push_back("--Ice.ThreadPool.Server.SizeWarn=0"); } + if(configUseSSL(_config)) + { + args.push_back("--IceSSL.CertFile=ms-appx:///client.p12"); + args.push_back("--IceSSL.Password=password"); + } + args.push_back("--Ice.Default.Host=" + _config.host); args.push_back("--Ice.Default.Protocol=" + _config.protocol); @@ -534,14 +540,13 @@ TestRunner::run() { if(!_test->server.empty()) { + printLineToConsoleOutput("**** running test " + _test->name); if(_config.server == "winrt") { - printLineToConsoleOutput("**** running test " + _test->name); runClientServerTest(_test->server, _test->client); } else - { - printLineToConsoleOutput("**** running test " + _test->name); + { runClientServerTestWithRemoteServer(_test->client); } } |