aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoren J. Rittle <ljrittle@acm.org>2004-02-05 03:52:41 +0000
committerLoren J. Rittle <ljrittle@gcc.gnu.org>2004-02-05 03:52:41 +0000
commitf63fd68bebbc08a1ebb2579692fc48aeeeceb74f (patch)
tree9224b9da3b0d9461c84495ceaf852f192ce6d86d
parent7778d52d896b908e3bdaa2f314a8c51f548ba354 (diff)
downloadgcc-f63fd68bebbc08a1ebb2579692fc48aeeeceb74f.zip
gcc-f63fd68bebbc08a1ebb2579692fc48aeeeceb74f.tar.gz
gcc-f63fd68bebbc08a1ebb2579692fc48aeeeceb74f.tar.bz2
* testsuite/performance/20_util/allocator/insert.cc (main): Tweak.
From-SVN: r77293
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc6
2 files changed, 10 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 1a5a989..4b007d4 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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.
diff --git a/libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc b/libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc
index 7a27c2fd342..15677d7 100644
--- a/libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc
+++ b/libstdc++-v3/testsuite/performance/20_util/allocator/insert.cc
@@ -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