From 01e2cb25e3eb0efbfc7a39c55c007721d5f4bbf5 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 2 Jul 2025 21:48:24 -0700 Subject: [PATCH] test: bump zlib/leak.test.ts for asan --- test/js/node/zlib/leak.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/node/zlib/leak.test.ts b/test/js/node/zlib/leak.test.ts index 7468cdb3fe..4150d833f1 100644 --- a/test/js/node/zlib/leak.test.ts +++ b/test/js/node/zlib/leak.test.ts @@ -6,7 +6,7 @@ import zlib from "node:zlib"; const input = Buffer.alloc(50000); for (let i = 0; i < input.length; i++) input[i] = Math.random(); -const upper = 1024 * 1024 * (isASAN ? 15 : 10); +const upper = 1024 * 1024 * (isASAN ? 20 : 10); describe("zlib compression does not leak memory", () => { beforeAll(() => {