summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-08-08 18:35:32 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-08-08 18:35:32 +0000
commitbd7d58ac95fbf4b44c81a52615e8a055f83845ce (patch)
treeeb03a888bcf43e42f7801eb4e99057fbf5a7b6b3
parentbdc8f6474533513fd74a90c024d2f447a6ab81f7 (diff)
downloadATCD-bd7d58ac95fbf4b44c81a52615e8a055f83845ce.tar.gz
ChangeLogTag:Wed Aug 08 11:30:26 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-02a8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rw-r--r--tests/Service_Config_Test.cpp4
4 files changed, 26 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f214955d77..ec503d5597a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Aug 08 11:30:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Don't check if "ACE_USES_WCHAR == 1" since some configurations
+ neglect to set it an integer value. Instead, just check if it
+ is defined.
+
Wed Aug 8 12:31:51 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/MEM_Stream_Test.cpp: Changed a ACE_DEBUG statment with an
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 1f214955d77..ec503d5597a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Wed Aug 08 11:30:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Don't check if "ACE_USES_WCHAR == 1" since some configurations
+ neglect to set it an integer value. Instead, just check if it
+ is defined.
+
Wed Aug 8 12:31:51 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/MEM_Stream_Test.cpp: Changed a ACE_DEBUG statment with an
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 1f214955d77..ec503d5597a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Wed Aug 08 11:30:26 2001 Ossama Othman <ossama@uci.edu>
+
+ * tests/Service_Config_Test.cpp (run_test):
+
+ Don't check if "ACE_USES_WCHAR == 1" since some configurations
+ neglect to set it an integer value. Instead, just check if it
+ is defined.
+
Wed Aug 8 12:31:51 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/MEM_Stream_Test.cpp: Changed a ACE_DEBUG statment with an
diff --git a/tests/Service_Config_Test.cpp b/tests/Service_Config_Test.cpp
index b7485132707..a49199f0156 100644
--- a/tests/Service_Config_Test.cpp
+++ b/tests/Service_Config_Test.cpp
@@ -121,7 +121,7 @@ run_test (int argc, ACE_TCHAR *argv[])
ACE_ARGV new_argv;
const ACE_TCHAR svc_conf[] =
-#if defined (ACE_USES_WCHAR) && ACE_USES_WCHAR == 1
+#if defined (ACE_USES_WCHAR)
// When using full Unicode support, use the version of the Service
// Configurator file that is UTF-16 encoded.
//
@@ -137,7 +137,7 @@ run_test (int argc, ACE_TCHAR *argv[])
#else
// ASCII (UTF-8) encoded Service Configurator file.
ACE_TEXT ("Service_Config_Test.conf");
-#endif /* ACE_USES_WCHAR == 1 */
+#endif /* ACE_USES_WCHAR */
// Process the Service Configurator directives in this test's
ACE_ASSERT (new_argv.add (argv) != -1