Summary: llvm-symbolizer understands both PDBs and DWARF, so it's a better bet if it's available. It prints out the function parameter types and column numbers, so I needed to churn the expected test output a bit. This makes most of the llvm-symbolizer subprocessing code target-independent. Pipes on all platforms use fd_t, and we can use the portable ReadFromFile / WriteToFile wrappers in symbolizer_sanitizer.cc. Only the pipe creation and process spawning is Windows-specific. Please check that the libcdep layering is still correct. I don't know how to reproduce the build configuration that relies on that. Reviewers: samsonov Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D11791 llvm-svn: 244616
16 lines
527 B
C++
16 lines
527 B
C++
// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
|
|
// FIXME: merge this with the common null_deref test when we can run common
|
|
// tests on Windows.
|
|
|
|
__attribute__((noinline))
|
|
static void NullDeref(int *ptr) {
|
|
// CHECK: ERROR: AddressSanitizer: access-violation on unknown address
|
|
// CHECK: {{0x0*000.. .*pc 0x.*}}
|
|
ptr[10]++; // BOOM
|
|
}
|
|
int main() {
|
|
NullDeref((int*)0);
|
|
// CHECK: {{ #1 0x.* in main.*null_deref.cc:}}[[@LINE-1]]:3
|
|
// CHECK: AddressSanitizer can not provide additional info.
|
|
}
|