Tests: update leak suppressions for latest versions

This commit is contained in:
Lovell Fuller
2022-08-23 09:38:51 +01:00
parent c3a852eecf
commit 8583eb1235
2 changed files with 39 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ const detectLibc = require('detect-libc');
const sharp = require('../../');
const libcFamily = detectLibc.familySync();
const usingCache = libcFamily !== detectLibc.MUSL;
const usingCache = !(process.env.G_DEBUG || libcFamily === detectLibc.MUSL);
const usingSimd = !(process.env.G_DEBUG || process.env.VIPS_NOVECTOR);
const concurrency = process.env.VIPS_CONCURRENCY ||
(libcFamily === detectLibc.MUSL || process.arch === 'arm' ? 1 : undefined);