From ab7654d98b23fd469367d771cfc19b7d533a3476 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Fri, 2 Sep 2005 16:23:39 +0000 Subject: [PATCH] 23465.cc: Reduce maximum size and lf. 2005-09-02 Paolo Carlini * testsuite/tr1/6_containers/unordered/hashtable/23465.cc: Reduce maximum size and lf. From-SVN: r103783 --- libstdc++-v3/ChangeLog | 5 +++++ .../testsuite/tr1/6_containers/unordered/hashtable/23465.cc | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5ba15010349..5e391f2eb88 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-09-02 Paolo Carlini + + * testsuite/tr1/6_containers/unordered/hashtable/23465.cc: + Reduce maximum size and lf. + 2005-09-01 Benjamin Kosnik * include/c_std/std_cmath.h: Declare C99 functions and helper diff --git a/libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/23465.cc b/libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/23465.cc index 56c3ab5bb02..35e52c2c693 100644 --- a/libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/23465.cc +++ b/libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/23465.cc @@ -26,8 +26,8 @@ void test01() { bool test __attribute__((unused)) = true; - for (float lf = 0.1; lf < 1001.0; lf *= 10.0) - for (int size = 1; size <= 19683; size *= 3) + for (float lf = 0.1; lf < 101.0; lf *= 10.0) + for (int size = 1; size <= 6561; size *= 3) { std::tr1::unordered_set us1, us2; typedef std::tr1::unordered_set::local_iterator local_iterator; -- 2.30.2