1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

Fix typos and missing closing bracket in test-memchr.c

* string/test-memchr.c (do_test): Typo on ‘byte’ and missing closing
	bracket.
This commit is contained in:
Adhemerval Zanella
2016-12-16 14:37:39 -02:00
parent 36820ce9ce
commit 8b1f57f4f2
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2016-12-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
* string/test-memchr.c (do_test): Typo on byte and missing closing
bracket.
2016-12-16 Joseph Myers <joseph@codesourcery.com> 2016-12-16 Joseph Myers <joseph@codesourcery.com>
* scripts/build-many-glibcs.py (Context.exec_self): Flush stdout * scripts/build-many-glibcs.py (Context.exec_self): Flush stdout

View File

@ -184,8 +184,8 @@ test_main (void)
do_test (i, 64, 256, 256, 0); do_test (i, 64, 256, 256, 0);
/* Check for large input sizes and for these cases we need to /* Check for large input sizes and for these cases we need to
make sure the bye is within the size range (that's why make sure the byte is within the size range (that's why
7 << i must be smaller than 2048. */ 7 << i must be smaller than 2048). */
do_test (0, 7 << i, 2048, SIZE_MAX, 23); do_test (0, 7 << i, 2048, SIZE_MAX, 23);
do_test (0, 2048 - i, 2048, SIZE_MAX, 23); do_test (0, 2048 - i, 2048, SIZE_MAX, 23);
do_test (i, 64, 256, SIZE_MAX, 23); do_test (i, 64, 256, SIZE_MAX, 23);