// RUN: %clang_hwasan -Wl,--build-id -g %s -o %t // RUN: echo '[{"prefix": "'"$(realpath $(dirname %s))"'/", "link": "http://test.invalid/{file}:{line}"}]' > %t.linkify // RUN: %env_hwasan_opts=symbolize=0 not %run %t 2>&1 | hwasan_symbolize --html --symbols $(dirname %t) --index | FileCheck %s // RUN: %env_hwasan_opts=symbolize=0 not %run %t 2>&1 | hwasan_symbolize --html --linkify %t.linkify --symbols $(dirname %t) --index | FileCheck --check-prefixes=CHECK,LINKIFY %s // RUN: %env_hwasan_opts=symbolize=0 not %run %t 2>&1 | hwasan_symbolize --symbols $(dirname %t) --index | FileCheck %s #include #include static volatile char sink; int main(int argc, char **argv) { __hwasan_enable_allocator_tagging(); char *volatile x = (char *)malloc(10); sink = x[100]; // LINKIFY: // CHECK: hwasan_symbolize.cpp:[[@LINE-2]] // CHECK: Cause: heap-buffer-overflow // CHECK: allocated by thread {{.*}} here: // LINKIFY: // CHECK: hwasan_symbolize.cpp:[[@LINE-7]] return 0; }