23465.cc: Reduce maximum size and lf.
authorPaolo Carlini <pcarlini@suse.de>
Fri, 2 Sep 2005 16:23:39 +0000 (16:23 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 2 Sep 2005 16:23:39 +0000 (16:23 +0000)
2005-09-02  Paolo Carlini  <pcarlini@suse.de>

* testsuite/tr1/6_containers/unordered/hashtable/23465.cc:
Reduce maximum size and lf.

From-SVN: r103783

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

index 5ba15010349ef75d767a26c204b5b148b2ed4ef9..5e391f2eb887ea67c8ea7ceae12005e73440fb5b 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 56c3ab5bb02390ae32c4753a401f65420c2673df..35e52c2c6931db11ae2223bad7f1d24b8e4e138f 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;