summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2006-06-21 15:48:32 +0000
committerSteve Huston <shuston@riverace.com>2006-06-21 15:48:32 +0000
commit41aaa193fc5079eb85754cec530a74d07268bc1a (patch)
treec3ec1d83b2683289e41873f5c46bb2a2d8c590af
parentb560ad1f84a0068e7ed3b4c61098afe223c51cda (diff)
downloadATCD-41aaa193fc5079eb85754cec530a74d07268bc1a.tar.gz
ChangeLogTag:Wed Jun 21 15:45:32 UTC 2006 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog5
-rw-r--r--tests/Hash_Map_Manager_Test.cpp9
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 84990e68bdf..cb2601ec370 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jun 21 15:45:32 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * tests/Hash_Map_Manager_Test.cpp: Fix incorrect concatenating of
+ text literals.
+
Wed Jun 21 07:10:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Misc/test_trace.cpp:
diff --git a/tests/Hash_Map_Manager_Test.cpp b/tests/Hash_Map_Manager_Test.cpp
index 1323433579c..f57d2580cce 100644
--- a/tests/Hash_Map_Manager_Test.cpp
+++ b/tests/Hash_Map_Manager_Test.cpp
@@ -110,8 +110,9 @@ int test_two_allocators ()
HASH_STRING_MAP hash;
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Opening hash map manager with "
- "insufficient table allocator, should fail...\n")));
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT ("Opening hash map manager with ")
+ ACE_TEXT ("insufficient table allocator, should fail...\n")));
ACE_OS::last_error (0);
status = hash.open (chunks, &table_alloc_small, &entry_alloc);
if (status < 0)
@@ -127,7 +128,9 @@ int test_two_allocators ()
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Entry allocator depth: %d.\n"),
entry_alloc.pool_depth ()));
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Opening hash map manager again, should succeed...\n")));
+ ACE_DEBUG
+ ((LM_DEBUG,
+ ACE_TEXT ("Opening hash map manager again, should succeed...\n")));
ACE_OS::last_error (0);
status = hash.open (chunks, &table_alloc, &entry_alloc);
if (status < 0)