summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-11-08 19:31:34 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-11-08 19:31:34 +0000
commitae13b4c05b656aa4bd9af61d89e815fa00089aaf (patch)
tree55fc83666a31046f618f9516fa472c479249a54a
parentbad2833fb8300c4c086bcee9b0b5c181c9171235 (diff)
downloadATCD-ae13b4c05b656aa4bd9af61d89e815fa00089aaf.tar.gz
ChangeLogTag: Mon Nov 8 13:30:47 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog7
-rw-r--r--tests/OS_Test.cpp4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 788b2265c56..9dec7f1ddd7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Nov 8 13:30:47 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/OS_Test.cpp:
+
+ Converted the binary string data in string_convert_test() to hex
+ escape sequences to get it to compile on gcc 3.4.1.
+
Mon Nov 8 12:05:03 2004 Chad Elliott <elliott_c@ociweb.com>
* include/makeinclude/rules.lib.GNU:
diff --git a/tests/OS_Test.cpp b/tests/OS_Test.cpp
index 9b26a1b34a2..13b4ef9cd54 100644
--- a/tests/OS_Test.cpp
+++ b/tests/OS_Test.cpp
@@ -743,8 +743,8 @@ string_convert_test (void)
int result = 0;
const char *test1_n = "abcdefg";
const wchar_t *test1_w = ACE_TEXT_WIDE ("abcdefg");
- const char *test2_n = "יטאשך";
- const wchar_t *test2_w = ACE_TEXT_WIDE ("יטאשך");
+ const char *test2_n = "\xe9\xe8\xe0\xf9\xea";
+ const wchar_t *test2_w = ACE_TEXT_WIDE ("\xe9\xe8\xe0\xf9\xea");
wchar_t str_w[10];
char str_n[10];
ACE_OS::strcpy (str_w, ACE_Ascii_To_Wide (test1_n).wchar_rep ());