diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5ba15010349e..5e391f2eb887 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 56c3ab5bb023..35e52c2c6931 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;