diff options
Diffstat (limited to 'TAO/tests/MProfile_Forwarding')
-rw-r--r-- | TAO/tests/MProfile_Forwarding/Manager.cpp | 4 | ||||
-rw-r--r-- | TAO/tests/MProfile_Forwarding/Servant_Locator.cpp | 6 | ||||
-rw-r--r-- | TAO/tests/MProfile_Forwarding/client.cpp | 8 | ||||
-rw-r--r-- | TAO/tests/MProfile_Forwarding/test_i.cpp | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/TAO/tests/MProfile_Forwarding/Manager.cpp b/TAO/tests/MProfile_Forwarding/Manager.cpp index ebf35905893..f1489871650 100644 --- a/TAO/tests/MProfile_Forwarding/Manager.cpp +++ b/TAO/tests/MProfile_Forwarding/Manager.cpp @@ -183,7 +183,7 @@ Manager::make_iors_register (void) if (third_ior == 0) ACE_DEBUG ((LM_DEBUG, - "Here is the culprit \n")); + "Here is the culprit\n")); // Third Server CORBA::Object_var object_tertiary = this->orb_->string_to_object (ACE_TEXT_ALWAYS_CHAR (third_ior)); @@ -214,7 +214,7 @@ Manager::make_iors_register (void) if (object_tertiary.in () == 0) ACE_DEBUG ((LM_DEBUG, - " There is a problem \n")); + " There is a problem\n")); TAO_IOP::TAO_IOR_Manipulation::IORList iors_again (3); iors_again.length(3); diff --git a/TAO/tests/MProfile_Forwarding/Servant_Locator.cpp b/TAO/tests/MProfile_Forwarding/Servant_Locator.cpp index 275d0c7f0a4..4185fda90f6 100644 --- a/TAO/tests/MProfile_Forwarding/Servant_Locator.cpp +++ b/TAO/tests/MProfile_Forwarding/Servant_Locator.cpp @@ -49,7 +49,7 @@ Servant_Locator::preinvoke (const PortableServer::ObjectId &oid, CORBA::String_var s = PortableServer::ObjectId_to_string (oid); ACE_DEBUG ((LM_DEBUG, - "The OID is <%s> \n", s.in ())); + "The OID is <%s>\n", s.in ())); if (ACE_OS::strstr (s.in (), "Simple_Server") == 0) { throw CORBA::OBJECT_NOT_EXIST (); @@ -60,10 +60,10 @@ Servant_Locator::preinvoke (const PortableServer::ObjectId &oid, Simple_Server::_narrow (this->objref_.in ()); ACE_DEBUG ((LM_DEBUG, - "Got the narrowed secondary server too... \n")); + "Got the narrowed secondary server too...\n")); ACE_DEBUG ((LM_DEBUG, - "About to throw exception.. \n")); + "About to throw exception..\n")); throw PortableServer::ForwardRequest ( CORBA::Object::_duplicate ( diff --git a/TAO/tests/MProfile_Forwarding/client.cpp b/TAO/tests/MProfile_Forwarding/client.cpp index 706dab2171e..2864a422a4b 100644 --- a/TAO/tests/MProfile_Forwarding/client.cpp +++ b/TAO/tests/MProfile_Forwarding/client.cpp @@ -56,7 +56,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { //FUZZ: disable check_for_NULL ACE_ERROR_RETURN ((LM_ERROR, - "The received objref is NULL \n"), + "The received objref is NULL\n"), -1); //FUZZ: enable check_for_NULL } @@ -75,7 +75,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[]) } catch (const CORBA::Exception& ex) { - ex._tao_print_exception ("Caught an exception \n"); + ex._tao_print_exception ("Caught an exception\n"); return -1; } return 0; @@ -88,7 +88,7 @@ void run_test (Simple_Server_ptr server) try { ACE_DEBUG ((LM_DEBUG, - "About to make remote call \n")); + "About to make remote call\n")); ACE_OS::sleep (2); // Make a remote call @@ -99,7 +99,7 @@ void run_test (Simple_Server_ptr server) ACE_OS::sleep (25); ACE_DEBUG ((LM_DEBUG, " hope you did\n")); */ ACE_DEBUG ((LM_DEBUG, - "I am going to shutdown \n")); + "I am going to shutdown\n")); server->shutdown (); ACE_OS::sleep (23); } diff --git a/TAO/tests/MProfile_Forwarding/test_i.cpp b/TAO/tests/MProfile_Forwarding/test_i.cpp index e994bbf6c62..4fb6535c3ab 100644 --- a/TAO/tests/MProfile_Forwarding/test_i.cpp +++ b/TAO/tests/MProfile_Forwarding/test_i.cpp @@ -18,7 +18,7 @@ void Simple_Server_i::remote_call (void) { ACE_DEBUG ((LM_DEBUG, - "Print out from process id (%P) hosting the servant \n")); + "Print out from process id (%P) hosting the servant\n")); } |