Tweak wording of sliding window test

This commit is contained in:
doyle 2023-08-28 22:19:51 +10:00
parent 8cce3380f5
commit 6a49e6fb59

View File

@ -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" "- [sanitizer/asan_interface.h](https://github.com/llvm-mirror/compiler-rt/blob/master/include/sanitizer/asan_interface.h)\n"
"\n" "\n"
"## Raw Test Results\n" "## Raw Test Results\n"
"Here we demonstrate that ASAN poison-ing will only poison the\n" "\n"
"byte region if the region meets an 8 byte boundary. It will only\n" "Here we poison a sliding window of 7 bytes to demonstrate that ASAN\n"
"poison bytes upto the 8 byte boundary, any bytes that straddle\n" "poisoning will only poison the byte region if the region meets an 8\n"
"the boundary that do not hit the next 8 byte boundary are not\n" "byte aligned address. It will only poison bytes up to the boundary,\n"
"poison-ed.\n" "any bytes that straddle the boundary that do not hit the next 8 byte\n"
"boundary are not poisoned.\n"
"\n"); "\n");
uint32_t const ASAN_ALIGNMENT = 8; uint32_t const ASAN_ALIGNMENT = 8;