[compiler-rt] r261352 - [sancov] using static asan
Mike Aizatsky via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 19 10:46:30 PST 2016
Author: aizatsky
Date: Fri Feb 19 12:46:30 2016
New Revision: 261352
URL: http://llvm.org/viewvc/llvm-project?rev=261352&view=rev
Log:
[sancov] using static asan
We are not able to recover coverage points from dynamically linked
binaries at this point without symbols in @plt tables.
Modified:
compiler-rt/trunk/test/asan/TestCases/Linux/coverage_html_report.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Linux/coverage_html_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/coverage_html_report.cc?rev=261352&r1=261351&r2=261352&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/coverage_html_report.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/coverage_html_report.cc Fri Feb 19 12:46:30 2016
@@ -1,5 +1,5 @@
// REQUIRES: has_sancovcc, x86_64-linux
-// RUN: %clangxx_asan -fsanitize-coverage=func %s -o %t
+// RUN: %clangxx_asan_static -fsanitize-coverage=func %s -o %t
// RUN: rm -rf %T/coverage_html_report
// RUN: mkdir -p %T/coverage_html_report
// RUN: cd %T/coverage_html_report
More information about the llvm-commits
mailing list