* testsuite/performance/20_util/allocator/insert.cc (main): Tweak.
authorLoren J. Rittle <ljrittle@acm.org>
Thu, 5 Feb 2004 03:52:41 +0000 (03:52 +0000)
committerLoren J. Rittle <ljrittle@gcc.gnu.org>
Thu, 5 Feb 2004 03:52:41 +0000 (03:52 +0000)
From-SVN: r77293

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc

index 1a5a989a826725c01ce8ac9f7a484a28b4683664..4b007d422fea3bea0c7af4c7dbf81661eee7f746 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-04  Loren J. Rittle  <ljrittle@acm.org>
+
+       * testsuite/performance/20_util/allocator/insert.cc (main): Tweak.
+
 2004-02-04  Felix Yen  <fwy@alumni.brown.edu>
 
        * testsuite/performance/20_util/producer_consumer.cc: New.
index 7a27c2fd3425a8b75da63916cdc04edb8ac7e79a..15677d79d3685801618f90e1ab7dfe1589c92709 100644 (file)
@@ -154,22 +154,28 @@ int main(void)
 
   typedef less<test_type> compare_type;
 #ifdef TEST_B9
+  iterations = 50000;
   test_container(map<test_type, test_type, compare_type, m_alloc_type>());
 #endif
 #ifdef TEST_B10
+  iterations = 50000;
   test_container(map<test_type, test_type, compare_type, n_alloc_type>());
 #endif
 #ifdef TEST_B11
+  iterations = 50000;
   test_container(map<test_type, test_type, compare_type, so_alloc_type>());
 #endif
 
 #ifdef TEST_B12
+  iterations = 50000;
   test_container(set<test_type, compare_type, m_alloc_type>());
 #endif
 #ifdef TEST_B13
+  iterations = 50000;
   test_container(set<test_type, compare_type, n_alloc_type>());
 #endif
 #ifdef TEST_B14
+  iterations = 50000;
   test_container(set<test_type, compare_type, so_alloc_type>());
 #endif