2026-03-06 09:01:12 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
# This is a set of suppressions for LeakSanitizer; you can use it by setting
|
|
|
|
|
# LSAN_OPTIONS="suppressions=/path/to/scripts/lsan_suppressions.txt"
|
|
|
|
|
# when running a QEMU built with the leak-sanitizer.
|
|
|
|
|
|
2023-01-24 18:01:01 +00:00
|
|
|
# The tcmalloc on Fedora37 confuses things
|
|
|
|
|
leak:/lib64/libtcmalloc_minimal.so.4
|
2023-06-30 19:03:52 +01:00
|
|
|
|
|
|
|
|
# libxkbcommon also leaks in qemu-keymap
|
|
|
|
|
leak:/lib64/libxkbcommon.so.0
|
2026-03-06 09:01:12 +00:00
|
|
|
|
2026-06-23 11:44:19 +04:00
|
|
|
# libfontconfig leaks are notorious, for ex
|
|
|
|
|
# https://gitlab.freedesktop.org/fontconfig/fontconfig/-/work_items/519
|
|
|
|
|
leak:libfontconfig.so
|
|
|
|
|
|
2026-03-06 09:01:12 +00:00
|
|
|
# g_set_user_dirs() deliberately leaks the previous cached g_get_user_*
|
|
|
|
|
# values. This is documented in upstream glib's valgrind-format
|
|
|
|
|
# suppression file:
|
|
|
|
|
# https://github.com/GNOME/glib/blob/main/tools/glib.supp
|
|
|
|
|
# This avoids false positive leak reports for the qga-ssh-test.
|
|
|
|
|
leak:g_set_user_dirs
|
2026-06-23 11:44:29 +04:00
|
|
|
|
|
|
|
|
# spice_server_add_interface allocates internal channel data that
|
|
|
|
|
# spice_server_destroy does not free
|
|
|
|
|
# https://gitlab.freedesktop.org/spice/spice/-/merge_requests/246
|
|
|
|
|
leak:spice_server_add_interface
|