forked from OSchip/llvm-project
Relax test introduced in D65322
It is possible that addr2line returns a valid function and file name for the passed address on some build configuations. The test is only checking that asan_symbolize doesn't assert any more when passed a valid file with an invalid address so there is no need to check that it can't find a valid function name. This should fix http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux llvm-svn: 370021
This commit is contained in:
parent
8a915f6b2e
commit
23a12fc3ac
|
@ -6,8 +6,8 @@
|
|||
|
||||
// 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+0x0)' | %asan_symbolize | FileCheck %s -check-prefix CHECK-BAD-ADDR
|
||||
// CHECK-BAD-ADDR: #0 0xabcdabcd in ??
|
||||
// RUN: echo '#0 0xabcdabcd (%t+0xabcdabcd)' | %asan_symbolize | FileCheck %s -check-prefix CHECK-BAD-ADDR
|
||||
// CHECK-BAD-ADDR: #0 0xabcdabcd in
|
||||
// CHECK-BAD-ADDR-EMPTY:
|
||||
|
||||
int main() {
|
||||
|
|
Loading…
Reference in New Issue