summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-27 20:22:19 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-27 20:22:19 +0000
commitc908006997d195711539e83d6fe25a3716ec0f98 (patch)
tree37500d6e586499c9bcd25e4d0fc3c87374b06c7b /tests
parent2da2ba7bdb802e831e8aab573c2f69150647bccc (diff)
downloadATCD-c908006997d195711539e83d6fe25a3716ec0f98.tar.gz
ChangeLogTag:Thu Dec 27 09:52:56 2001 Douglas C. Schmidt <schmidt@siesta.cs.wustl.edu>
Diffstat (limited to 'tests')
-rw-r--r--tests/Get_Opt_Test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Get_Opt_Test.cpp b/tests/Get_Opt_Test.cpp
index a193cd7389d..ae81088e4d0 100644
--- a/tests/Get_Opt_Test.cpp
+++ b/tests/Get_Opt_Test.cpp
@@ -42,14 +42,14 @@ parse_args (int test_number,
// Test the skip_argv0 for the first test only.
if (skip_argv0 > 0)
{
- test = "Test_";
+ test = ACE_TEXT ("Test_");
ACE_TCHAR s[20];
test += ACE_OS::itoa (test_number, s, 10);
- test += " ";
+ test += ACE_TEXT (" ");
}
test += test_args;
- optstring += "fr:o::sW;";
+ optstring += ACE_TEXT ("fr:o::sW;");
ACE_DEBUG ((LM_INFO,
" TEST %d ************************************************************\n",
@@ -120,8 +120,8 @@ parse_args (int test_number,
ACE_DEBUG ((LM_INFO, " Found long option \"%s\" %s %s\n",
get_opt.long_option (),
- get_opt.opt_arg () ? "with argument:" : "",
- get_opt.opt_arg () ? get_opt.opt_arg () : ""));
+ get_opt.opt_arg () ? ACE_TEXT ("with argument:") : ACE_TEXT (""),
+ get_opt.opt_arg () ? get_opt.opt_arg () : ACE_TEXT ("")));
break;
case 'f':
// This flag was added in both the optstring in the ctor and with