diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-07 05:51:25 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-07 05:51:25 +0000 |
commit | 45d107fa502c8733988f83cd8e1634c6d56b29c6 (patch) | |
tree | d1692370fb48aefef0e38c28b85874f49fe24af4 /tests/Map_Manager_Test.cpp | |
parent | c5f4da0cacfa4f82c19e527abc207d55ddbb9452 (diff) | |
download | ATCD-45d107fa502c8733988f83cd8e1634c6d56b29c6.tar.gz |
.
Diffstat (limited to 'tests/Map_Manager_Test.cpp')
-rw-r--r-- | tests/Map_Manager_Test.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tests/Map_Manager_Test.cpp b/tests/Map_Manager_Test.cpp index a40acf9e419..70dcf6cb412 100644 --- a/tests/Map_Manager_Test.cpp +++ b/tests/Map_Manager_Test.cpp @@ -129,7 +129,7 @@ test_active_map_manager (size_t table_size, ACE_ASSERT (map.current_size () == remaining_entries); } - delete[] active_keys; + delete [] active_keys; } static void @@ -552,11 +552,14 @@ run_test (void (*ptf) (size_t, size_t, int), timer.elapsed_time (et); - ASYS_TCHAR *test_iterators_string = 0; + LPCTSTR test_iterators_string = 0; + if (test_iterators) - test_iterators_string = ASYS_TEXT ("includes executing iterators"); + test_iterators_string = + ASYS_TEXT ("includes executing iterators"); else - test_iterators_string = ASYS_TEXT ("doesn't include executing iterators"); + test_iterators_string = + ASYS_TEXT ("doesn't include executing iterators"); ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("time to test a map of size %d for %d iterations using %s (%s)\n"), |