test: bump zlib/leak.test.ts for asan

This commit is contained in:
Meghan Denny
2025-07-02 21:48:24 -07:00
committed by GitHub
parent 010e715902
commit 01e2cb25e3

View File

@@ -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(() => {