[llvm-commits] [compiler-rt] r173140 - /compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c

Alexander Potapenko glider at google.com
Tue Jan 22 02:13:37 PST 2013


Author: glider
Date: Tue Jan 22 04:13:37 2013
New Revision: 173140

URL: http://llvm.org/viewvc/llvm-project?rev=173140&view=rev
Log:
[ASan] Fix the path to ASan interface in interface_symbols_linux.c

Modified:
    compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c

Modified: compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c?rev=173140&r1=173139&r2=173140&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c (original)
+++ compiler-rt/trunk/lib/asan/lit_tests/Linux/interface_symbols_linux.c Tue Jan 22 04:13:37 2013
@@ -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/(.*//" \





More information about the llvm-commits mailing list