summaryrefslogtreecommitdiff
path: root/TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp')
-rw-r--r--TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp b/TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp
index bb2cc17034f..1baf4140a3a 100644
--- a/TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp
+++ b/TAO/tests/Dynamic_TP/POA_Loader/Dynamic_TP_POA_Test_Dynamic/client.cpp
@@ -11,7 +11,7 @@ int client_num = 1;
int report_exception = 1;
bool is_shutdown = false;
int num_threads = 1;
-const ACE_TCHAR *test = ACE_TEXT("");
+const ACE_TCHAR *test = "";
int goal = 0;
int
@@ -47,13 +47,13 @@ parse_args (int argc, ACE_TCHAR *argv[])
case '?':
default:
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT("usage: %C ")
- ACE_TEXT("[-c <client #>] ")
- ACE_TEXT("[-e (show exception) <0|1>] ")
- ACE_TEXT("[-k <ior>] ")
- ACE_TEXT("[-s (shutdownE)] ")
- ACE_TEXT("[-t <test> <goal>] ")
- ACE_TEXT("\n"),
+ "usage: %s "
+ "[-c <client #>] "
+ "[-e (show exception) <0|1>] "
+ "[-k <ior>] "
+ "[-s (shutdown)] "
+ "[-t <test> <goal>] "
+ "\n",
argv [0]),
-1);
}
@@ -97,11 +97,11 @@ int ClientTask::svc (void)
try
{
ACE_DEBUG((LM_DEBUG,
- ACE_TEXT("Client %d calling server\n"),
+ "Client %d calling server\n",
ndx));
CORBA::String_var the_string = target_->get_string (ndx);
ACE_DEBUG((LM_DEBUG,
- ACE_TEXT("Client %d received return text of: [%s %d].\n"),
+ "Client %d received return text of: [%C %d].\n",
ndx, the_string.in(), ndx));
{
ACE_GUARD_RETURN (ACE_Mutex, mon, this->lock_, -1);
@@ -111,7 +111,7 @@ int ClientTask::svc (void)
catch (const CORBA::NO_IMPLEMENT& )
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client %d caught full queue exception.\n"),
+ "Client %d caught full queue exception.\n",
ndx));
{
ACE_GUARD_RETURN (ACE_Mutex, mon, this->lock_, -1);
@@ -121,14 +121,14 @@ int ClientTask::svc (void)
catch (const CORBA::TRANSIENT& )
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client %d caught transent, retrying.\n"),
+ "Client %d caught transent, retrying.\n",
ndx));
continue;
}
catch (const CORBA::Exception& ex)
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client %d caught other exception. %s\n"),
+ "Client %d caught other exception. %s\n",
ndx, ex._name()));
{
@@ -175,7 +175,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
if (hello->_non_existent())
{
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT("Client: non_existent returns true\n")),
+ "Client: non_existent returns true\n"),
-1);
}
else
@@ -184,7 +184,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
catch (CORBA::TRANSIENT &)
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client: got a transient exception with %d tries remaining\n"),
+ "Client: got a transient exception with %d tries remaining\n",
i-1));
}
}
@@ -200,18 +200,18 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
ct.activate (THR_NEW_LWP | THR_JOINABLE, num_threads);
ct.wait ();
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client: replies = %d, NO_IMPL = %d, other ex = %d\n"),
+ "Client: replies = %d, NO_IMPL = %d, other ex = %d\n",
ct.replies_, ct.nis_, ct.exs_));
if (ct.exs_ > 0)
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client: ERROR: unexpected exception caught.\n")));
+ "Client: ERROR: unexpected exception caught.\n"));
result = -1;
}
else if (ACE_OS::strcasecmp (test, ACE_TEXT ("max_queue")) == 0)
{
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT("Client: max_queue test, got %d overages, expected %d\n"),
+ "Client: max_queue test, got %d overages, expected %d\n",
ct.nis_, goal));
if (ct.nis_ != goal)
{
@@ -224,7 +224,7 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
catch (const CORBA::Exception& ex)
{
if (report_exception)
- ex._tao_print_exception (ACE_TEXT("Exception caught:"));
+ ex._tao_print_exception ("Exception caught:");
return -1;
}