aboutsummaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorTulio Magno Quites Machado Filho <tuliom@redhat.com>2025-02-05 17:20:34 -0300
committerTulio Magno Quites Machado Filho <tuliom@redhat.com>2025-02-14 15:46:38 -0300
commit1b6f868625403d6b7683af840e87d2b18d5d7731 (patch)
tree4f654b99bd9709b6ccf27dc0e9d1f7d27d19f6cb /stdio-common
parentaa3d7bd5299b33bffc118aa618b59bfa66059bcb (diff)
downloadglibc-1b6f868625403d6b7683af840e87d2b18d5d7731.tar.xz
glibc-1b6f868625403d6b7683af840e87d2b18d5d7731.zip
Increase the amount of data tested in stdio-common/tst-fwrite-bz29459.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. Fixes: 596a61cf6b (libio: Start to return errors when flushing fwrite's buffer [BZ #29459], 2025-01-28) Reported-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/tst-fwrite-bz29459.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/tst-fwrite-bz29459.c b/stdio-common/tst-fwrite-bz29459.c
index 0640faac0c..4fcc4c89e2 100644
--- a/stdio-common/tst-fwrite-bz29459.c
+++ b/stdio-common/tst-fwrite-bz29459.c
@@ -32,7 +32,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
/* The goal of this test is to use fwrite () on a redirected and closed
stdout. A script will guarantee that stdout is redirected to another
@@ -50,7 +50,7 @@ main (void)
size_t rc;
/* 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";
const size_t len = strlen(s);
/* Ensure that fwrite buffers the output before writing to stdout. */