summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-tests.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-07-09 14:53:15 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-07-09 14:53:15 -0400
commit7f0519b732369921f31a502784e89f9cf2a9b1c7 (patch)
tree7594f164ba7f3d1b560f06bdc0cca0df7a173ee6 /.gitlab-ci/run-tests.sh
parent59be04d7104bfcef5ae34a2e467725f5ced9f983 (diff)
downloadpango-7f0519b732369921f31a502784e89f9cf2a9b1c7.tar.gz
ci: Update ci images
Include llvm on the image, so that we can use llvm-symbolizer, too try and get meaningful stacktraces out of asan.
Diffstat (limited to '.gitlab-ci/run-tests.sh')
-rwxr-xr-x.gitlab-ci/run-tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci/run-tests.sh b/.gitlab-ci/run-tests.sh
index d82f1d08..683c031b 100755
--- a/.gitlab-ci/run-tests.sh
+++ b/.gitlab-ci/run-tests.sh
@@ -7,7 +7,8 @@ srcdir=$( pwd )
builddir=$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:symbolize=1
+export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer
# Check leaks of slices
export G_SLICE=always-malloc