Bug 1215686 - Disable ASAN leak reporting on reftests for now; r=mccr8

This commit is contained in:
Ehsan Akhgari 2015-10-16 17:22:25 -04:00
Родитель 419cfce138
Коммит 0d3dcab66e
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -335,6 +335,10 @@ class RefTest(object):
xrePath=options.xrePath, debugger=options.debugger)
browserEnv["XPCOM_DEBUG_BREAK"] = "stack"
if mozinfo.info["asan"]:
# Disable leak checking for reftests for now
browserEnv["ASAN_OPTIONS"] = "detect_leaks=0"
for v in options.environment:
ix = v.find("=")
if ix <= 0: