diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-07-09 14:53:15 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-07-09 14:53:15 -0400 |
commit | 7f0519b732369921f31a502784e89f9cf2a9b1c7 (patch) | |
tree | 7594f164ba7f3d1b560f06bdc0cca0df7a173ee6 /.gitlab-ci/run-tests.sh | |
parent | 59be04d7104bfcef5ae34a2e467725f5ced9f983 (diff) | |
download | pango-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.sh | 3 |
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 |