Tweak wording of sliding window test
This commit is contained in:
parent
8cce3380f5
commit
6a49e6fb59
@ -119,11 +119,12 @@ int main()
|
||||
"- [sanitizer/asan_interface.h](https://github.com/llvm-mirror/compiler-rt/blob/master/include/sanitizer/asan_interface.h)\n"
|
||||
"\n"
|
||||
"## Raw Test Results\n"
|
||||
"Here we demonstrate that ASAN poison-ing will only poison the\n"
|
||||
"byte region if the region meets an 8 byte boundary. It will only\n"
|
||||
"poison bytes upto the 8 byte boundary, any bytes that straddle\n"
|
||||
"the boundary that do not hit the next 8 byte boundary are not\n"
|
||||
"poison-ed.\n"
|
||||
"\n"
|
||||
"Here we poison a sliding window of 7 bytes to demonstrate that ASAN\n"
|
||||
"poisoning will only poison the byte region if the region meets an 8\n"
|
||||
"byte aligned address. It will only poison bytes up to the boundary,\n"
|
||||
"any bytes that straddle the boundary that do not hit the next 8 byte\n"
|
||||
"boundary are not poisoned.\n"
|
||||
"\n");
|
||||
|
||||
uint32_t const ASAN_ALIGNMENT = 8;
|
||||
|
Loading…
Reference in New Issue
Block a user