[test][hwasan] Update test for D132622

This commit is contained in:
Vitaly Buka 2022-09-06 15:42:13 -07:00
parent 181d408186
commit 2eda7c5b38
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ int main(int argc, char **argv) {
fprintf(stderr, "is a large allocated heap chunk; size: 1003520 offset: %d\n",
offset);
fprintf(stderr, "Cause: heap-buffer-overflow\n");
fprintf(stderr, "is located %s of 1000000-byte region\n",
offset == -30 ? "30 bytes to the left" : "0 bytes to the right");
fprintf(stderr, "is located %s a 1000000-byte region\n",
offset == -30 ? "30 bytes before" : "0 bytes after");
return -1;
}
#endif