aboutsummaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/tst-fwrite-pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/tst-fwrite-pipe.c b/stdio-common/tst-fwrite-pipe.c
index a6119125b2..ce1a92b384 100644
--- a/stdio-common/tst-fwrite-pipe.c
+++ b/stdio-common/tst-fwrite-pipe.c
@@ -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;