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

Unified Diff: scripts/slave/runtest.py

Issue 12398012: Disable the aggressive memcmp checks under ASan. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years, 10 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 185890)
+++ scripts/slave/runtest.py (working copy)
@@ -1032,6 +1032,8 @@
if options.factory_properties.get('asan', False):
# 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'
# 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