From 884e2be89b0cd997f372c59f05bf05a9a5372b60 Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Thu, 17 Dec 2015 11:45:27 -0800 Subject: Fixes for Bluetooth plug-ins. Updates to testsuite to support Bluetooth and remote servers. --- cpp/test/Ice/exceptions/Client.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'cpp/test/Ice/exceptions/Client.cpp') diff --git a/cpp/test/Ice/exceptions/Client.cpp b/cpp/test/Ice/exceptions/Client.cpp index 7782971d575..c7b0cb63039 100644 --- a/cpp/test/Ice/exceptions/Client.cpp +++ b/cpp/test/Ice/exceptions/Client.cpp @@ -32,6 +32,9 @@ main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS Ice::registerIceSSL(); +# if defined(__linux) + Ice::registerIceBT(); +# endif #endif try @@ -42,7 +45,10 @@ main(int argc, char* argv[]) initData.properties->setProperty("Ice.MessageSizeMax", "10"); // 10KB max Ice::CommunicatorHolder ich = Ice::initialize(argc, argv, initData); - return run(argc, argv, ich.communicator()); + RemoteConfig rc("Ice/exceptions", argc, argv, ich.communicator()); + int status = run(argc, argv, ich.communicator()); + rc.finished(status); + return status; } catch(const Ice::Exception& ex) { -- cgit v1.2.3