From 3092afb9fa63ade31aa2662d47d38d75f4fbb33d Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 27 Jul 2022 22:12:41 +0100 Subject: [PATCH] trivial: Include the new 'leak' sanitizer in the opt-out list --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 25d2549c5..306a25a37 100644 --- a/meson.build +++ b/meson.build @@ -553,7 +553,7 @@ gidocgen_app = find_program('gi-docgen', required: get_option('docs')) # using "meson configure -Db_sanitize=address,undefined" is super useful in finding corruption, # but it does not work with our GMainContext-abuse tests... -if get_option('b_sanitize').contains('address') +if get_option('b_sanitize') in ['address,undefined', 'address', 'undefined', 'leak'] run_sanitize_unsafe_tests = false else run_sanitize_unsafe_tests = true