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/objects/Client.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'cpp/test/Ice/objects/Client.cpp') diff --git a/cpp/test/Ice/objects/Client.cpp b/cpp/test/Ice/objects/Client.cpp index a0e27474c25..21bc3e9d4a7 100644 --- a/cpp/test/Ice/objects/Client.cpp +++ b/cpp/test/Ice/objects/Client.cpp @@ -144,16 +144,22 @@ main(int argc, char* argv[]) { #ifdef ICE_STATIC_LIBS Ice::registerIceSSL(); +# if defined(__linux) + Ice::registerIceBT(); +# endif #endif try { Ice::CommunicatorHolder ich = Ice::initialize(argc, argv); - return run(argc, argv, ich.communicator()); + RemoteConfig rc("Ice/objects", argc, argv, ich.communicator()); + int status = run(argc, argv, ich.communicator()); + rc.finished(status); + return status; } catch(const Ice::Exception& ex) { cerr << ex << endl; - return EXIT_FAILURE; + return EXIT_FAILURE; } } -- cgit v1.2.3