diff options
Diffstat (limited to 'TAO/tests/DII_Collocation_Tests/twoway')
-rw-r--r-- | TAO/tests/DII_Collocation_Tests/twoway/Client_Task.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/DII_Collocation_Tests/twoway/Hello.cpp | 14 | ||||
-rw-r--r-- | TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.cpp b/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.cpp index 446a1ddfe2b..fa640489fbb 100644 --- a/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.cpp +++ b/TAO/tests/DII_Collocation_Tests/twoway/Client_Task.cpp @@ -292,7 +292,7 @@ Client_Task::svc (void) catch (...) { ++error_count_; - ACE_ERROR ((LM_ERROR, "(%P|%t)Client_Task::svc - caught unknown exception \n")); + ACE_ERROR ((LM_ERROR, "(%P|%t)Client_Task::svc - caught unknown exception\n")); return 1; } diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Hello.cpp b/TAO/tests/DII_Collocation_Tests/twoway/Hello.cpp index 6122ce28dca..da2b21ba6ed 100644 --- a/TAO/tests/DII_Collocation_Tests/twoway/Hello.cpp +++ b/TAO/tests/DII_Collocation_Tests/twoway/Hello.cpp @@ -161,7 +161,7 @@ Hello::test_var_array_arg(const Test::Var_Array messages) { if (debug) ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_var_array_arg ") - ACE_TEXT("messages[%d] = %s \n"), i, messages[i].in ())); + ACE_TEXT("messages[%d] = %s\n"), i, messages[i].in ())); if (ACE_OS::strncmp (messages[i].in (), TEST_STR, ACE_OS::strlen (TEST_STR)) != 0) ERROR_COUNT ("Hello::test_var_array_arg") } @@ -173,7 +173,7 @@ Hello::test_special_basic_arg(CORBA::Char value) { if (debug) ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_special_basic_arg ") - ACE_TEXT(" got special basic arg: %c \n"), value)); + ACE_TEXT(" got special basic arg: %c\n"), value)); if (value != TEST_SPECIAL_VALUE) ERROR_COUNT ("Hello::test_special_basic_arg") } @@ -184,7 +184,7 @@ void Hello::test_objref_arg ( ) { if (debug) - ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_objref_arg \n"))); + ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_objref_arg\n"))); if (CORBA::is_nil (test)) ERROR_COUNT ("Hello::test_objref_arg") @@ -207,7 +207,7 @@ void Hello::test_object_arg ( ) { if (debug) - ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_object_arg \n"))); + ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_object_arg\n"))); ::Test::Simple_Test_var simple_test = ::Test::Simple_Test::_narrow (o); CORBA::ULong error_count = 0; @@ -226,7 +226,7 @@ void Hello::test_args_1 ( ) { if (debug) - ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_1 \n"))); + ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_1\n"))); ::Test::Simple_Test_var simple_test = ::Test::Simple_Test::_narrow (arg1); CORBA::ULong error_count = 0; @@ -251,7 +251,7 @@ void Hello::test_args_2 ( ) { if (debug) - ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_2 \n"))); + ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_2\n"))); if (ACE_OS::strncmp (arg1, TEST_STR, ACE_OS::strlen (TEST_STR)) != 0 ) ERROR_COUNT ("Hello::test_args_2") @@ -275,7 +275,7 @@ void Hello::test_args_3 ( ) { if (debug) - ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_3 \n"))); + ACE_DEBUG((LM_DEBUG, ACE_TEXT("(%P|%t)Hello::test_args_3\n"))); if (ACE_OS::strncmp (arg1, TEST_STR, ACE_OS::strlen (arg1)) != 0) ERROR_COUNT ("Hello::test_args_3") if (ACE_OS::strncmp (arg2.get_buffer (), TEST_STR, ::Test::BOUNDED_VAR_SIZE) != 0) diff --git a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp index c05ba7cef99..f7984939597 100644 --- a/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp +++ b/TAO/tests/DII_Collocation_Tests/twoway/Server_Task.cpp @@ -127,7 +127,7 @@ Server_Task::svc (void) catch (...) { error_count_ ++; - ACE_ERROR ((LM_ERROR, "(%P|%t)Server_Task::svc - caught unknown exception \n")); + ACE_ERROR ((LM_ERROR, "(%P|%t)Server_Task::svc - caught unknown exception\n")); return 1; } |