mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
Increase the amount of data tested in stdio-common/tst-fwrite-pipe.c
The number of iterations and the length of the string are not high enough on some systems causing the test to return false-positives. Testcase stdio-common/tst-fwrite-bz29459.c was fixed in the same way in1b6f868625
(Increase the amount of data tested in stdio-common/tst-fwrite-bz29459.c, 2025-02-14) Testcases stdio-common/tst-fwrite-bz29459.c and stdio-common/tst-fwrite-pipe.c were introcued in596a61cf6b
(libio: Start to return errors when flushing fwrite's buffer [BZ #29459], 2025-01-28)
This commit is contained in:
parent
8a46bf41e5
commit
4734d0f8ad
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
|||
/* Usually this test reproduces in a few iterations. However, keep a high
|
||||
number of iterations in order to avoid return false-positives due to an
|
||||
overwhelmed/slow system. */
|
||||
#define ITERATIONS 5000
|
||||
#define ITERATIONS 500000
|
||||
|
||||
#define BUFFERSIZE 20
|
||||
|
||||
|
@ -71,7 +71,7 @@ do_test (void)
|
|||
{
|
||||
/* Ensure the string we send has a new line because we're dealing
|
||||
with a lined-buffered stream. */
|
||||
const char *s = "hello\n";
|
||||
const char *s = "hello world\n";
|
||||
size_t len = strlen (s);
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue