2005-09-02 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Sep 2005 16:23:39 +0000 (16:23 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Sep 2005 16:23:39 +0000 (16:23 +0000)
* testsuite/tr1/6_containers/unordered/hashtable/23465.cc:
Reduce maximum size and lf.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103783 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/tr1/6_containers/unordered/hashtable/23465.cc

index 5ba1501..5e391f2 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-02  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/tr1/6_containers/unordered/hashtable/23465.cc:
+       Reduce maximum size and lf.
+
 2005-09-01  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/c_std/std_cmath.h: Declare C99 functions and helper
index 56c3ab5..35e52c2 100644 (file)
@@ -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<int> us1, us2;
        typedef std::tr1::unordered_set<int>::local_iterator local_iterator;