This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
RE: PATCH: Add threaded tests
- From: "Billinghurst, David (CRTS)" <David dot Billinghurst at riotinto dot com>
- To: <rittle at labs dot mot dot com>,<libstdc++ at gcc dot gnu dot org>
- Date: Fri, 25 Jan 2002 12:44:17 +0800
- Subject: RE: PATCH: Add threaded tests
Test pthreads4.cc takes forever on cygwin. The other tests run in a reasonable time.
On 900 MHz PIII
10^4 iterations: 47 s
10^5 iterations: 433 s (> 300s dejagnu timeout)
Would you accept a patch something like
#if defined(__CYGWIN__)
static int iters = 10000;
#else
static int iters = 1000000;
#endif