aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-10-13 18:09:54 +0300
committernkozlovskiy <nmk@ydb.tech>2023-10-13 18:35:41 +0300
commit653f57be2e8bf12d7657506bc0d108196cc500b5 (patch)
tree4080ea8a767af09c86374f5692f4251efd0d12b9
parentcdbf79cb4e1fbf3be2451b73ef662732ca412c23 (diff)
downloadydb-653f57be2e8bf12d7657506bc0d108196cc500b5.tar.gz
add tasan.supp, lsan.supp
-rw-r--r--contrib/python/cffi/lsan.supp2
-rw-r--r--contrib/tools/python3/lib/lsan.supp2
-rw-r--r--contrib/tools/python3/src/tsan.supp3
-rw-r--r--library/cpp/actors/core/tsan.supp3
-rw-r--r--library/cpp/actors/interconnect/mock/tsan.supp1
5 files changed, 11 insertions, 0 deletions
diff --git a/contrib/python/cffi/lsan.supp b/contrib/python/cffi/lsan.supp
new file mode 100644
index 0000000000..8533ad0d29
--- /dev/null
+++ b/contrib/python/cffi/lsan.supp
@@ -0,0 +1,2 @@
+leak:b_init_cffi_1_0_external_module
+leak:lib_build_and_cache_attr
diff --git a/contrib/tools/python3/lib/lsan.supp b/contrib/tools/python3/lib/lsan.supp
new file mode 100644
index 0000000000..37121682e7
--- /dev/null
+++ b/contrib/tools/python3/lib/lsan.supp
@@ -0,0 +1,2 @@
+leak:PyBytes_FromStringAndSize
+leak:PyUnicode_New
diff --git a/contrib/tools/python3/src/tsan.supp b/contrib/tools/python3/src/tsan.supp
new file mode 100644
index 0000000000..65dce089ff
--- /dev/null
+++ b/contrib/tools/python3/src/tsan.supp
@@ -0,0 +1,3 @@
+# Thread sanitizers reports a data race during main thread shutdown.
+# This race was consiered to be safe. See DEVTOOLSSUPPORT-8443 for details
+race:PyInterpreterState_Delete
diff --git a/library/cpp/actors/core/tsan.supp b/library/cpp/actors/core/tsan.supp
new file mode 100644
index 0000000000..ca5be0c0f0
--- /dev/null
+++ b/library/cpp/actors/core/tsan.supp
@@ -0,0 +1,3 @@
+# tsan reports potential deadlock which is false-positive.
+# See: https://github.com/google/sanitizers/issues/814
+deadlock:NActors::TActorCoro::StateFunc
diff --git a/library/cpp/actors/interconnect/mock/tsan.supp b/library/cpp/actors/interconnect/mock/tsan.supp
new file mode 100644
index 0000000000..19fd059419
--- /dev/null
+++ b/library/cpp/actors/interconnect/mock/tsan.supp
@@ -0,0 +1 @@
+deadlock:Attach