mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 18:40:16 +02:00
Tests: update leak suppressions for latest versions
This commit is contained in:
parent
c3a852eecf
commit
8583eb1235
@ -232,6 +232,14 @@
|
|||||||
fun:XML_ParseBuffer
|
fun:XML_ParseBuffer
|
||||||
obj:*/libfontconfig.so.*
|
obj:*/libfontconfig.so.*
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
leak_fontconfig_XML_ParseBuffer_indirect
|
||||||
|
Memcheck:Leak
|
||||||
|
match-leak-kinds: indirect
|
||||||
|
...
|
||||||
|
fun:XML_ParseBuffer
|
||||||
|
obj:*/libfontconfig.so.*
|
||||||
|
}
|
||||||
{
|
{
|
||||||
leak_fontconfig_FcInitLoadConfigAndFonts
|
leak_fontconfig_FcInitLoadConfigAndFonts
|
||||||
Memcheck:Leak
|
Memcheck:Leak
|
||||||
@ -242,6 +250,36 @@
|
|||||||
...
|
...
|
||||||
fun:FcInitLoadConfigAndFonts
|
fun:FcInitLoadConfigAndFonts
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
leak_fontconfig_FcDefaultSubstitute
|
||||||
|
Memcheck:Leak
|
||||||
|
match-leak-kinds: indirect
|
||||||
|
fun:calloc
|
||||||
|
...
|
||||||
|
fun:FcDefaultSubstitute
|
||||||
|
...
|
||||||
|
fun:pango_itemize_with_base_dir
|
||||||
|
...
|
||||||
|
fun:pango_layout_get_pixel_extents
|
||||||
|
fun:vips_text_get_extents
|
||||||
|
}
|
||||||
|
{
|
||||||
|
leak_fontconfig_FcLangSetCreate
|
||||||
|
Memcheck:Leak
|
||||||
|
match-leak-kinds: indirect
|
||||||
|
fun:malloc
|
||||||
|
fun:FcLangSetCreate
|
||||||
|
fun:FcLangSetCopy
|
||||||
|
fun:FcValueSave
|
||||||
|
...
|
||||||
|
fun:FcFontRenderPrepare
|
||||||
|
fun:FcFontMatch
|
||||||
|
...
|
||||||
|
fun:pango_itemize_with_base_dir
|
||||||
|
...
|
||||||
|
fun:pango_layout_get_pixel_extents
|
||||||
|
fun:vips_text_get_extents
|
||||||
|
}
|
||||||
|
|
||||||
# heif
|
# heif
|
||||||
{
|
{
|
||||||
|
@ -4,7 +4,7 @@ const detectLibc = require('detect-libc');
|
|||||||
const sharp = require('../../');
|
const sharp = require('../../');
|
||||||
|
|
||||||
const libcFamily = detectLibc.familySync();
|
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 usingSimd = !(process.env.G_DEBUG || process.env.VIPS_NOVECTOR);
|
||||||
const concurrency = process.env.VIPS_CONCURRENCY ||
|
const concurrency = process.env.VIPS_CONCURRENCY ||
|
||||||
(libcFamily === detectLibc.MUSL || process.arch === 'arm' ? 1 : undefined);
|
(libcFamily === detectLibc.MUSL || process.arch === 'arm' ? 1 : undefined);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user