-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.lsan-suppressions.txt
More file actions
100 lines (85 loc) · 1.65 KB
/
.lsan-suppressions.txt
File metadata and controls
100 lines (85 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# LeakSanitizer suppressions for node-sqlite
# Suppress known leaks in V8, Node.js, and system libraries
# V8 internal allocations
leak:v8::internal::
leak:v8::base::
leak:v8::platform::
# Node.js internals
leak:node::
leak:node::loader::
leak:node::binding::
leak:node::options_parser::
leak:node::per_process::
leak:node::InitializeOncePerProcess
leak:node::InitializeNodeWithArgs
leak:node::CreateEnvironment
leak:node::LoadEnvironment
# N-API and node-addon-api
leak:napi_
leak:Napi::
# pthread and thread-local storage
leak:pthread_create
leak:pthread_setspecific
leak:pthread_key_create
leak:__pthread_once
leak:__pthread_key_create
# Dynamic loading
leak:dlopen
leak:dlsym
leak:_dl_init
leak:_dl_open
leak:_dl_catch_error
# libc internals
leak:__libc_start_main
leak:__static_initialization_and_destruction
leak:__cxa_atexit
leak:__new_exitfn
# libuv
leak:uv_
leak:uv__
# OpenSSL
leak:CRYPTO_
leak:OPENSSL_
leak:SSL_
leak:ERR_
leak:EVP_
# ICU
leak:icu::
leak:icu_
leak:ucnv_
leak:u_init
# GLib/GIO (for Linux systems)
leak:g_type_init
leak:g_type_register
leak:g_io_module_load
leak:g_object_new
leak:g_slice_alloc
leak:g_malloc
leak:g_thread_pool_new
# DBus (for Linux systems)
leak:dbus_
leak:_dbus_
# SQLite global initialization (if any)
leak:sqlite3_initialize
leak:sqlite3_config
# Python runtime (used by some build tools)
leak:python
leak:_Py
leak:Py
leak:builtin_exec
leak:PyImport_
leak:PyModule_
leak:PyType_
leak:PyDict_
leak:PyObject_
leak:_PyEval_
leak:import_find_and_load
# Node.js modules and dependencies
leak:node_modules/
leak:@rollup/rollup
leak:rollup.linux
leak:napi_register_module
# System libraries
leak:libstdc++
leak:libgcc_s.so
leak:ld-linux