OSDN Git Service

* testsuite/performance/20_util/allocator/insert.cc (main): Tweak.
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 Feb 2004 03:52:41 +0000 (03:52 +0000)
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 5 Feb 2004 03:52:41 +0000 (03:52 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77293 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 1a5a989..4b007d4 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 7a27c2f..15677d7 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