diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-27 20:31:47 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-27 20:31:47 +0000 |
commit | 29f5bbc9a2fc575aea1c56d28467353c0bc92ce3 (patch) | |
tree | 67b13642ba24588e1b238997547f3ea517a7e9d0 /tests/Handle_Set_Test.cpp | |
parent | 39b11bab85915bd48dd73739a175263853860633 (diff) | |
download | ATCD-29f5bbc9a2fc575aea1c56d28467353c0bc92ce3.tar.gz |
(main): uncommented test_duplicates () and test_performance () calls, and added ACE_Unbounded_Queue_Iterator<int> specialization
Diffstat (limited to 'tests/Handle_Set_Test.cpp')
-rw-r--r-- | tests/Handle_Set_Test.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Handle_Set_Test.cpp b/tests/Handle_Set_Test.cpp index adc0c53ad4b..92e05c0db5f 100644 --- a/tests/Handle_Set_Test.cpp +++ b/tests/Handle_Set_Test.cpp @@ -170,9 +170,9 @@ main (int argc, char *argv[]) size_t max_handles = argc > 2 ? ACE_OS::atoi (argv[2]) : ACE_Handle_Set::MAXSIZE; size_t max_iterations = argc > 3 ? ACE_OS::atoi (argv[3]) : ACE_MAX_ITERATIONS; - // test_duplicates (count); + test_duplicates (count); test_boundaries (); - // test_performance (max_handles, max_iterations); + test_performance (max_handles, max_iterations); ACE_END_TEST; return 0; @@ -180,5 +180,6 @@ main (int argc, char *argv[]) #if defined (ACE_TEMPLATES_REQUIRE_SPECIALIZATION) template class ACE_Unbounded_Queue<int>; +template class ACE_Unbounded_Queue_Iterator<int>; template class ACE_Node<int>; #endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */ |