diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-27 20:22:19 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-12-27 20:22:19 +0000 |
commit | 610ca6395e18ea2cfda073f5d0ea7254b59e75fe (patch) | |
tree | 37500d6e586499c9bcd25e4d0fc3c87374b06c7b /tests | |
parent | 69566c859b2e88526edda407e3a88203d3e86791 (diff) | |
download | ATCD-610ca6395e18ea2cfda073f5d0ea7254b59e75fe.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.cpp | 10 |
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 |