From: Paolo Carlini Date: Fri, 2 Sep 2005 16:23:39 +0000 (+0000) Subject: 23465.cc: Reduce maximum size and lf. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab7654d98b23fd469367d771cfc19b7d533a3476;p=gcc.git 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 --- 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;