Bug 1467549 - Disable the BackgroundHangReporter in ASan builds. r=Nika
This is causing LSan leaks which don't have an easy fix, and we're already not running it in debug builds, so it can't hurt too much. MozReview-Commit-ID: I8nDnWIz9qr
This commit is contained in:
@@ -11,9 +11,11 @@
|
||||
# BHR disabled for Release builds because of bug 965392.
|
||||
# BHR disabled for debug builds because of bug 979069.
|
||||
# BHR disabled for TSan builds because of bug 1121216.
|
||||
# BHR disabled for ASan builds because of bug 1445441.
|
||||
if CONFIG['NIGHTLY_BUILD'] and \
|
||||
not CONFIG['MOZ_DEBUG'] and \
|
||||
not CONFIG['MOZ_TSAN']:
|
||||
not CONFIG['MOZ_TSAN'] and \
|
||||
not CONFIG['MOZ_ASAN']:
|
||||
DEFINES['MOZ_ENABLE_BACKGROUND_HANG_MONITOR'] = 1
|
||||
|
||||
EXTRA_COMPONENTS += [
|
||||
|
||||
Reference in New Issue
Block a user