mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-03 03:58:54 +00:00
Add re2 to memory leak checker whitelist (#5101)
* Add re2 to memory leak checker whitelist
This commit is contained in:
parent
934f30fc38
commit
09a6ce6bc0
1 changed files with 1 additions and 0 deletions
|
|
@ -214,6 +214,7 @@ Memory_LeakCheck::~Memory_LeakCheck() {
|
|||
// empty_named_groups = new std::map<string, int>;
|
||||
// empty_group_names = new std::map<int, string>; });
|
||||
if (string.find("RtlRunOnceExecuteOnce") == std::string::npos &&
|
||||
string.find("re2::RE2::Init") == std::string::npos &&
|
||||
string.find("testing::internal::Mutex::ThreadSafeLazyInit") == std::string::npos &&
|
||||
string.find("testing::internal::ThreadLocalRegistryImpl::GetThreadLocalsMapLocked") == std::string::npos &&
|
||||
string.find("testing::internal::ThreadLocalRegistryImpl::GetValueOnCurrentThread") == std::string::npos) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue