diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-10-08 13:11:18 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-10-08 13:11:18 +0000 |
commit | 480477c0e1f99df40b64d4fc9cf8a458e8d11b78 (patch) | |
tree | caa8bd84cd1cd442814f5d6b55c5c2287f2a5c54 /compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc | |
parent | 0ae35af51873e9750724145c4b524fdbc149accf (diff) | |
download | bcm5719-llvm-480477c0e1f99df40b64d4fc9cf8a458e8d11b78.tar.gz bcm5719-llvm-480477c0e1f99df40b64d4fc9cf8a458e8d11b78.zip |
[ASan] use llvm-symbolizer for ASan lit-style tests on Mac
llvm-svn: 165391
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc b/compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc index a0dd8c1821d..d3c66daa7a5 100644 --- a/compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc +++ b/compiler-rt/lib/asan/lit_tests/strncpy-overflow.cc @@ -25,7 +25,7 @@ int main(int argc, char **argv) { // CHECK: {{WRITE of size 1 at 0x.* thread T0}} // CHECK-Linux: {{ #0 0x.* in .*strncpy}} // CHECK-Darwin: {{ #0 0x.* in wrap_strncpy}} - // CHECK: {{ #1 0x.* in main .*strncpy-overflow.cc:24}} + // CHECK: {{ #1 0x.* in _?main .*strncpy-overflow.cc:24}} // CHECK: {{0x.* is located 0 bytes to the right of 9-byte region}} // CHECK: {{allocated by thread T0 here:}} @@ -35,6 +35,6 @@ int main(int argc, char **argv) { // CHECK-Darwin: {{ #0 0x.* in .*mz_malloc.*}} // CHECK-Darwin: {{ #1 0x.* in malloc_zone_malloc.*}} // CHECK-Darwin: {{ #2 0x.* in malloc.*}} - // CHECK-Darwin: {{ #3 0x.* in main .*strncpy-overflow.cc:23}} + // CHECK-Darwin: {{ #3 0x.* in _?main .*strncpy-overflow.cc:23}} return short_buffer[8]; } |