mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
c1f4108352
These tests were skipped by the use-test-skeleton conversion done in
commit 29955b5d
because they did not have an `int main (void)'
declaration. Instead their `main' functions were declared with arguments
(i.e. argc, argv) even though they didn't use them.
Remove these arguments and include the test skeleton in these tests.
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
/* Make sure we don't test the optimized inline functions if we want to
|
|
test the real implementation. */
|
|
#undef __USE_STRING_INLINES
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
static const size_t lens[] = { 0, 1, 0, 2, 0, 1, 0, 3,
|
|
0, 1, 0, 2, 0, 1, 0, 4 };
|
|
char basebuf[24 + 32];
|
|
size_t base;
|
|
|
|
for (base = 0; base < 32; ++base)
|
|
{
|
|
char *buf = basebuf + base;
|
|
size_t words;
|
|
|
|
for (words = 0; words < 4; ++words)
|
|
{
|
|
size_t last;
|
|
memset (buf, 'a', words * 4);
|
|
|
|
for (last = 0; last < 16; ++last)
|
|
{
|
|
buf[words * 4 + 0] = (last & 1) != 0 ? 'b' : '\0';
|
|
buf[words * 4 + 1] = (last & 2) != 0 ? 'c' : '\0';
|
|
buf[words * 4 + 2] = (last & 4) != 0 ? 'd' : '\0';
|
|
buf[words * 4 + 3] = (last & 8) != 0 ? 'e' : '\0';
|
|
buf[words * 4 + 4] = '\0';
|
|
|
|
if (strlen (buf) != words * 4 + lens[last])
|
|
{
|
|
printf ("\
|
|
strlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n",
|
|
base, words, last,
|
|
strlen (buf), words * 4 + lens[last]);
|
|
return 1;
|
|
}
|
|
|
|
if (strnlen (buf, -1) != words * 4 + lens[last])
|
|
{
|
|
printf ("\
|
|
strnlen failed for base=%Zu, words=%Zu, and last=%Zu (is %zd, expected %zd)\n",
|
|
base, words, last,
|
|
strnlen (buf, -1), words * 4 + lens[last]);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
#include "../test-skeleton.c"
|