Commit f63fd68b by Loren J. Rittle Committed by Loren J. Rittle

* testsuite/performance/20_util/allocator/insert.cc (main): Tweak.

From-SVN: r77293
parent 7778d52d
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment