summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-08-01 05:12:22 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-08-01 05:12:22 +0000
commitcde00e0c86b0070c5c6a833525eb380e34afe981 (patch)
treeb61219ba7f0f2bb0b909ba4572b674d4c4c7aa3a
parent297455a5812d40f30f759092f0d5c25c1bd7a6f4 (diff)
downloadATCD-cde00e0c86b0070c5c6a833525eb380e34afe981.tar.gz
ChangeLogTag:Tue Jul 31 22:10:48 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--tests/Service_Config_Test.cpp4
4 files changed, 23 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e86705d2160..59cf2ed14c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jul 31 22:10:48 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Wrap strings passed to ACE_ARGV::add() within an ACE_TEXT
+ macro. Fixes Unicode conversion problems.
+
Tue Jul 31 16:53:57 2001 Ossama Othman <ossama@uci.edu>
* ace/Svc_Conf.h (ace_yyrestart, ace_yy_delete_parse_buffer,
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e86705d2160..59cf2ed14c4 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Tue Jul 31 22:10:48 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Wrap strings passed to ACE_ARGV::add() within an ACE_TEXT
+ macro. Fixes Unicode conversion problems.
+
Tue Jul 31 16:53:57 2001 Ossama Othman <ossama@uci.edu>
* ace/Svc_Conf.h (ace_yyrestart, ace_yy_delete_parse_buffer,
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e86705d2160..59cf2ed14c4 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Tue Jul 31 22:10:48 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Wrap strings passed to ACE_ARGV::add() within an ACE_TEXT
+ macro. Fixes Unicode conversion problems.
+
Tue Jul 31 16:53:57 2001 Ossama Othman <ossama@uci.edu>
* ace/Svc_Conf.h (ace_yyrestart, ace_yy_delete_parse_buffer,
diff --git a/tests/Service_Config_Test.cpp b/tests/Service_Config_Test.cpp
index 76195ffed9c..f1d6e3c1eae 100644
--- a/tests/Service_Config_Test.cpp
+++ b/tests/Service_Config_Test.cpp
@@ -122,8 +122,8 @@ run_test (int argc, ACE_TCHAR *argv[])
// Process the Service Configurator directives in this test's
ACE_ASSERT (new_argv.add (argv) != -1
- && new_argv.add ("-f") != -1
- && new_argv.add ("Service_Config_Test.conf") != -1);
+ && new_argv.add (ACE_TEXT ("-f")) != -1
+ && new_argv.add (ACE_TEXT ("Service_Config_Test.conf")) != -1);
// We need this scope to make sure that the destructor for the
// <ACE_Service_Config> gets called.