From 29ad2c12476070a3faf549127b943401babb8aae Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 5 Jun 2023 20:56:00 -0400 Subject: [PATCH] ci: Turn off LeakSanitizer When it is enabled, almost every report from asan is "LeakSanitizer has encountered a fatal error." So try without. --- .gitlab-ci/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/run-tests.sh b/.gitlab-ci/run-tests.sh index 60efda3b72..ded8da6d41 100755 --- a/.gitlab-ci/run-tests.sh +++ b/.gitlab-ci/run-tests.sh @@ -9,7 +9,7 @@ backend=$2 multiplier=${MESON_TEST_TIMEOUT_MULTIPLIER:-1} # Ignore memory leaks lower in dependencies -export LSAN_OPTIONS=suppressions=$srcdir/lsan.supp:print_suppressions=0 +export LSAN_OPTIONS=suppressions=$srcdir/lsan.supp:print_suppressions=0:detect_leaks=0 export G_SLICE=always-malloc case "${backend}" in -- 2.30.2