From c17c345d03c0988c59c664a289abcee39f73383a Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 3 Feb 2026 21:21:06 -0800 Subject: [PATCH] fix(yoga): suppress LSAN false positives for GC-managed YGNode allocations --- test/leaksan.supp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/leaksan.supp b/test/leaksan.supp index 3ddb409c5a..ecc10b628a 100644 --- a/test/leaksan.supp +++ b/test/leaksan.supp @@ -121,3 +121,7 @@ leak:bun.js.Debugger.startJSDebuggerThread leak:WebCore::jsSQLStatementOpenStatementFunction # ci, test/js/node/test/parallel/test-dgram-unref-in-cluster.js leak:bun.js.api.bun.udp_socket.UDPSocket.udpSocket +# Yoga YGNode allocations are GC-managed via YogaNodeImpl ref-counting; +# JSC does not run finalizers at process exit, so LSAN sees them as leaks. +leak:YGNodeNewWithConfig +leak:YGNodeNew