summaryrefslogtreecommitdiff
path: root/ACE/tests/Get_Opt_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-23 08:20:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-23 08:20:39 +0000
commit1f64aa73343cd2a5e5b185b5737fec57d53e6add (patch)
treefcb01a56ae6534294f6337c3866e2e4bdb0d5066 /ACE/tests/Get_Opt_Test.cpp
parentab6ed5beeecb2c3d0fe230f76d872c2c7b0cedcb (diff)
downloadATCD-1f64aa73343cd2a5e5b185b5737fec57d53e6add.tar.gz
Mon Feb 23 08:16:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/tests/Get_Opt_Test.cpp')
-rw-r--r--ACE/tests/Get_Opt_Test.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/tests/Get_Opt_Test.cpp b/ACE/tests/Get_Opt_Test.cpp
index 5f9ca406fde..8acabb3a131 100644
--- a/ACE/tests/Get_Opt_Test.cpp
+++ b/ACE/tests/Get_Opt_Test.cpp
@@ -77,37 +77,37 @@ parse_args (int test_number,
'f',
ACE_Get_Opt::NO_ARG) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT (" Unable to add long option 'f' \n")), 1);
+ ACE_TEXT (" Unable to add long option 'f'\n")), 1);
if (get_opt.long_option (ACE_TEXT ("requires_arg"),
'r',
ACE_Get_Opt::ARG_REQUIRED) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT (" Unable to add long option 'r' \n")), 1);
+ ACE_TEXT (" Unable to add long option 'r'\n")), 1);
if (get_opt.long_option (ACE_TEXT ("optional_arg"),
'o',
ACE_Get_Opt::ARG_OPTIONAL) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT (" Unable to add long option 'o' \n")), 1);
+ ACE_TEXT (" Unable to add long option 'o'\n")), 1);
if (get_opt.long_option (ACE_TEXT ("long_option"),
'l',
ACE_Get_Opt::ARG_OPTIONAL) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT (" Unable to add long option 'l' \n")), 1);
+ ACE_TEXT (" Unable to add long option 'l'\n")), 1);
if (get_opt.long_option (ACE_TEXT ("long_only"),
-11,
ACE_Get_Opt::ARG_REQUIRED) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT (" Unable to add long option ")
- ACE_TEXT ("\"long_only\" \n")), 1);
+ ACE_TEXT ("\"long_only\"\n")), 1);
if (get_opt.long_option (ACE_TEXT ("long_no_arg")) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT (" Unable to add long option ")
- ACE_TEXT ("\"long_no_arg\" \n")), 1);
+ ACE_TEXT ("\"long_no_arg\"\n")), 1);
// This is the special case of providing a non-alpha numeric corresponding
// short option. This lets you use the corresponding short option in a
@@ -118,7 +118,7 @@ parse_args (int test_number,
ACE_Get_Opt::ARG_OPTIONAL) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT (" Unable to add long option ")
- ACE_TEXT ("\"non_alpha_short\" \n")), 1);
+ ACE_TEXT ("\"non_alpha_short\"\n")), 1);
// We print out the optstring here because adding long_options that
// have corresponding short options that aren't yet present, are added.