aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/bug28.c
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@redhat.com>2023-05-17 09:33:05 -0400
committerCarlos O'Donell <carlos@redhat.com>2023-05-18 12:34:00 -0400
commitb9125aeaed45e10ce329f91f007eb3da43d2155f (patch)
tree4e88e03563e0cf0177aaebbbd64d74b11b44713f /stdio-common/bug28.c
parenta08e854d0058ba3a9a8eccc545dd4c3885cc640e (diff)
downloadglibc-b9125aeaed45e10ce329f91f007eb3da43d2155f.zip
glibc-b9125aeaed45e10ce329f91f007eb3da43d2155f.tar.gz
glibc-b9125aeaed45e10ce329f91f007eb3da43d2155f.tar.bz2
stdio-common: Adjust tests in Makefile
Sort tests against updated scripts/sort-makefile-lines.py. No changes in generated code. No regressions on x86_64 and i686. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'stdio-common/bug28.c')
-rw-r--r--stdio-common/bug28.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/stdio-common/bug28.c b/stdio-common/bug28.c
new file mode 100644
index 0000000..57c8cef
--- /dev/null
+++ b/stdio-common/bug28.c
@@ -0,0 +1,50 @@
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+int
+do_test (void)
+{
+ size_t instances = 16384;
+#define X0 "\n%1$s\n" "%1$s" "%2$s" "%2$s" "%3$s" "%4$s" "%5$d" "%5$d"
+ const char *item = "\na\nabbcd55";
+#define X3 X0 X0 X0 X0 X0 X0 X0 X0
+#define X6 X3 X3 X3 X3 X3 X3 X3 X3
+#define X9 X6 X6 X6 X6 X6 X6 X6 X6
+#define X12 X9 X9 X9 X9 X9 X9 X9 X9
+#define X14 X12 X12 X12 X12
+#define TRAILER "%%%%%%%%%%%%%%%%%%%%%%%%%%"
+#define TRAILER2 TRAILER TRAILER
+ size_t length = instances * strlen (item) + strlen (TRAILER) + 1;
+
+ char *buf = malloc (length + 1);
+ snprintf (buf, length + 1,
+ X14 TRAILER2 "\n",
+ "a", "b", "c", "d", 5);
+
+ const char *p = buf;
+ size_t i;
+ for (i = 0; i < instances; ++i)
+ {
+ const char *expected;
+ for (expected = item; *expected; ++expected)
+ {
+ if (*p != *expected)
+ {
+ printf ("mismatch at offset %zu (%zu): expected %d, got %d\n",
+ (size_t) (p - buf), i, *expected & 0xFF, *p & 0xFF);
+ return 1;
+ }
+ ++p;
+ }
+ }
+ if (strcmp (p, TRAILER "\n") != 0)
+ {
+ printf ("mismatch at trailer: [%s]\n", p);
+ return 1;
+ }
+ free (buf);
+ return 0;
+}
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"