mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
* string/test-memset.c (test_main): Use negative byte value is
test.
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
2005-07-24 Ulrich Drepper <drepper@redhat.com>
|
2005-07-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* string/test-memset.c (test_main): Use negative byte value is
|
||||||
|
test.
|
||||||
|
|
||||||
* string/test-memset.c (do_one_test): Compare effect of call, not
|
* string/test-memset.c (do_one_test): Compare effect of call, not
|
||||||
only return value.
|
only return value.
|
||||||
|
|
||||||
Add a few casts to avoid warnings.
|
Add a few casts to avoid warnings.
|
||||||
|
|
||||||
2005-07-24 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
|
2005-07-24 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
|
||||||
|
@@ -193,7 +193,7 @@ test_main (void)
|
|||||||
printf ("\t%s", impl->name);
|
printf ("\t%s", impl->name);
|
||||||
putchar ('\n');
|
putchar ('\n');
|
||||||
|
|
||||||
for (c = 0; c <= 130; c += 65)
|
for (c = -65; c <= 130; c += 65)
|
||||||
{
|
{
|
||||||
for (i = 0; i < 18; ++i)
|
for (i = 0; i < 18; ++i)
|
||||||
do_test (0, c, 1 << i);
|
do_test (0, c, 1 << i);
|
||||||
|
Reference in New Issue
Block a user