-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set detect_leaks=1 in various places where we do ASAN builds in CI. (#…
- Loading branch information
1 parent
01d0deb
commit 293ce20
Showing
4 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Looks like some Objective C class bits are leaked, which is probably OK since | ||
# those are singletons. | ||
leak:realizeClassWithoutSwift | ||
leak:objc_initializeClassPair_internal | ||
|
||
# TODO: Under [NSManagedObjectContext executeFetchRequest] there are managed object bits that seem to be leaky. | ||
leak:class_addMethod | ||
leak:class_addIvar | ||
|
||
# TODO: Leaks of blocks from dispatch source handlers that need to be investigated. | ||
leak:_Block_copy | ||
|
||
# TODO: OpenSSL random byte generation creates some sort of pools that we seem to never clean up. This seems to be happening a _lot_. | ||
leak:drbg_ctr_init | ||
leak:rand_pool_new | ||
leak:RAND_priv_bytes | ||
leak:drbg_bytes | ||
|
||
# TODO: OpenSSL ERR_get_state seems to leak. | ||
leak:ERR_get_state |