diff options
| author | Alexander Potapenko <glider@google.com> | 2013-01-22 10:13:37 +0000 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2013-01-22 10:13:37 +0000 |
| commit | 0c92557fcbc11c8a07e1dfde9dbaa1b505d1e28a (patch) | |
| tree | 356fd1e076f9489e1de49bea99acc0bb2268c75c | |
| parent | 178723a6876e3f310dd1da56a6db63f778cb5ea8 (diff) | |
| download | bcm5719-llvm-0c92557fcbc11c8a07e1dfde9dbaa1b505d1e28a.tar.gz bcm5719-llvm-0c92557fcbc11c8a07e1dfde9dbaa1b505d1e28a.zip | |
[ASan] Fix the path to ASan interface in interface_symbols_linux.c
llvm-svn: 173140
| -rw-r--r-- | compiler-rt/lib/asan/lit_tests/Linux/interface_symbols_linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/Linux/interface_symbols_linux.c b/compiler-rt/lib/asan/lit_tests/Linux/interface_symbols_linux.c index f3167f56292..1d68f9ad284 100644 --- a/compiler-rt/lib/asan/lit_tests/Linux/interface_symbols_linux.c +++ b/compiler-rt/lib/asan/lit_tests/Linux/interface_symbols_linux.c @@ -1,6 +1,6 @@ // Check the presense of interface symbols in compiled file. -// RUN: %clang -fsanitize=address -dead_strip -O2 %s -o %t.exe +// RUN: %clang -fsanitize=address -O2 %s -o %t.exe // RUN: nm %t.exe | grep " T " | sed "s/.* T //" \ // RUN: | grep "__asan_" | sed "s/___asan_/__asan_/" \ // RUN: | grep -v "__asan_malloc_hook" \ @@ -8,7 +8,7 @@ // RUN: | grep -v "__asan_symbolize" \ // RUN: | grep -v "__asan_default_options" \ // RUN: | grep -v "__asan_on_error" > %t.symbols -// RUN: cat %p/../../../include/sanitizer/asan_interface.h \ +// RUN: cat %p/../../../../include/sanitizer/asan_interface.h \ // RUN: | sed "s/\/\/.*//" | sed "s/typedef.*//" \ // RUN: | grep -v "OPTIONAL" \ // RUN: | grep "__asan_.*(" | sed "s/.* __asan_/__asan_/;s/(.*//" \ |

