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

Unified Diff: scripts/slave/runtest.py

Issue 13986012: Pass replace_intrin=0 when running tests under ASan on OS X. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years, 8 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: scripts/slave/runtest.py
===================================================================
--- scripts/slave/runtest.py (revision 195771)
+++ scripts/slave/runtest.py (working copy)
@@ -1129,7 +1129,9 @@
# Set the path to llvm-symbolizer to be used by asan_symbolize.py
os.environ['LLVM_SYMBOLIZER_PATH'] = symbolizer_path
# Avoid aggressive memcmp checks until http://crbug.com/178677 is fixed.
- os.environ['ASAN_OPTIONS'] = 'strict_memcmp=0'
+ # Also do not replace memcpy/memmove/memset to suppress a report in OpenCL,
+ # see http://crbug.com/162461.
+ os.environ['ASAN_OPTIONS'] = 'strict_memcmp=0 replace_intrin=0'
# Set the number of shards environement variables.
if options.total_shards and options.shard_index:
os.environ['GTEST_TOTAL_SHARDS'] = str(options.total_shards)
« 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