mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 06:20:06 +00:00
[aarch64] Fix value of MIN_PAGE_SIZE for testing
MIN_PAGE_SIZE is normally set to 4096 but for testing it can be set to 16 so that it exercises the page crossing code for every misaligned access. The value was set to 15, which is obviously wrong, so fixed as obvious and tested. * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE): Fix value.
This commit is contained in:
parent
140137fb2d
commit
be64b1946b
@ -1,3 +1,8 @@
|
||||
2018-08-08 Siddhesh Poyarekar <siddhesh@sourceware.org>
|
||||
|
||||
* sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE):
|
||||
Fix value.
|
||||
|
||||
2018-08-08 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* math/libm-test-nextdown.inc (do_test): Move comment to ....
|
||||
|
@ -54,7 +54,7 @@
|
||||
#define REP8_80 0x8080808080808080
|
||||
|
||||
#ifdef TEST_PAGE_CROSS
|
||||
# define MIN_PAGE_SIZE 15
|
||||
# define MIN_PAGE_SIZE 16
|
||||
#else
|
||||
# define MIN_PAGE_SIZE 4096
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user