Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(765)

Unified Diff: base/debug/sanitizer_options.cc

Issue 296513014: Do not set the default `suppressions` and `external_symbolizer_path` options for TSan. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/sanitizer_options.cc
diff --git a/base/debug/sanitizer_options.cc b/base/debug/sanitizer_options.cc
index cf25d709600fb3a438ad88617c856bb6c0ec60fb..1affdb23fec80d7e8a2d6d82ff5e2acc6788b290 100644
--- a/base/debug/sanitizer_options.cc
+++ b/base/debug/sanitizer_options.cc
@@ -80,14 +80,9 @@ const char *__asan_default_options() {
// report_thread_leaks=0 - do not report unjoined threads at the end of
// the program execution.
// print_suppressions=1 - print the list of matched suppressions.
-// suppressions=<path> - path to the suppressions file.
-// external_symbolizer_path=<path> - path to the llvm-symbolizer binary.
const char kTsanDefaultOptions[] =
"detect_deadlocks=1 second_deadlock_stack=1 report_signal_unsafe=0 "
- "report_thread_leaks=0 print_suppressions=1 "
- "suppressions=tools/valgrind/tsan_v2/suppressions.txt "
- "external_symbolizer_path="
- "third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer ";
+ "report_thread_leaks=0 print_suppressions=1 ";
extern "C"
__attribute__((no_sanitize_thread))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698