mirror of
https://github.com/lovell/sharp.git
synced 2025-12-19 07:15:08 +01:00
Tests: update leak suppressions for latest versions
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user