23465.cc: Reduce maximum size and lf.

2005-09-02  Paolo Carlini  <pcarlini@suse.de>

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

From-SVN: r103783
This commit is contained in:
Paolo Carlini 2005-09-02 16:23:39 +00:00 committed by Paolo Carlini
parent a38578e1bb
commit ab7654d98b
2 changed files with 7 additions and 2 deletions

View 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

View 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;