diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-07-25 01:40:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-07-25 01:40:59 +0000 |
commit | 09987e425cce292a7202de18a9ef1bb62529a77f (patch) | |
tree | c1bc9fe321e9552545e5bc48e54ab5e84afc9fcc /string/test-memset.c | |
parent | 03c4ded352703c5cfbee90af024a366fa87a3b56 (diff) | |
download | glibc-09987e425cce292a7202de18a9ef1bb62529a77f.tar.gz glibc-09987e425cce292a7202de18a9ef1bb62529a77f.tar.xz glibc-09987e425cce292a7202de18a9ef1bb62529a77f.zip |
* string/test-memset.c (test_main): Use negative byte value is cvs/fedora-glibc-20050725T0627
test.
Diffstat (limited to 'string/test-memset.c')
-rw-r--r-- | string/test-memset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/test-memset.c b/string/test-memset.c index 6ea8455e01..601ace4195 100644 --- a/string/test-memset.c +++ b/string/test-memset.c @@ -193,7 +193,7 @@ test_main (void) printf ("\t%s", impl->name); putchar ('\n'); - for (c = 0; c <= 130; c += 65) + for (c = -65; c <= 130; c += 65) { for (i = 0; i < 18; ++i) do_test (0, c, 1 << i); |