diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-01-22 00:13:13 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-01-22 00:13:13 -0500 |
commit | 0d790505aa6cffc1280afd56037a3c3978970ea5 (patch) | |
tree | 3521f8779bf17cd79ef5daab75576aba591958a4 | |
parent | a486536925ab7b9615e371ebfcabac64516b4d86 (diff) | |
download | gtk+-0d790505aa6cffc1280afd56037a3c3978970ea5.tar.gz |
Force malloc of g_slices in asan buildlsan-leaks
Otherwise leaks could be missed.
-rwxr-xr-x | .gitlab-ci/run-tests.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci/run-tests.sh b/.gitlab-ci/run-tests.sh index 6f6a09258f..1fca1f7a4b 100755 --- a/.gitlab-ci/run-tests.sh +++ b/.gitlab-ci/run-tests.sh @@ -9,6 +9,7 @@ backend=$2 # Ignore memory leaks lower in dependencies export LSAN_OPTIONS=suppressions=$srcdir/lsan.supp +export G_SLICE=always-malloc case "${backend}" in x11) |