mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 11:46:41 +00:00

It turns out that the DarwinSymbolizer does not print the "in" part for invalid files but instead prints #0 0xabcdabcd (.../asan-symbolize-bad-path.cpp.tmp/bad/path:i386+0x1234) This tests is only checking that asan_symbolize.py doesn't hang or crash, so further relax the checks to ensure that the test passes on macOS. llvm-svn: 370243
17 lines
692 B
C++
17 lines
692 B
C++
// Test that asan_symbolize does not hang when provided with an non-existing
|
|
// path.
|
|
// RUN: echo '#0 0xabcdabcd (%t/bad/path+0x1234)' | %asan_symbolize | FileCheck %s -check-prefix CHECK-BAD-FILE
|
|
// Note: can't check for "0xabcdabcd in ?? ??:0" since DarwinSymbolizer will print the file even if it doesn't exist.
|
|
// CHECK-BAD-FILE: #0 0xabcdabcd
|
|
// CHECK-BAD-FILE-EMPTY:
|
|
|
|
// Also test that asan_symbolize doesn't assert on an invalid address with a valid file:
|
|
// RUN: %clangxx_asan -O0 %s -o %t
|
|
// RUN: echo '#0 0xabcdabcd (%t+0xabcdabcd)' | %asan_symbolize | FileCheck %s -check-prefix CHECK-BAD-ADDR
|
|
// CHECK-BAD-ADDR: #0 0xabcdabcd
|
|
// CHECK-BAD-ADDR-EMPTY:
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|