summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2019-11-15 16:47:39 +0000
committerJakub Jelen <jjelen@redhat.com>2019-11-18 09:39:56 +0100
commit6eb75750d0167810d88f2551ac0c56bad6a3bbdb (patch)
treec57270853b5e51172099abd66ed7d5138ab88402 /.gitlab-ci.yml
parente3ef3dd597b54e1f4f42f0670f2f6bf6af745fd3 (diff)
ci: Ignore OpenSSL memory leak
OPENSSL_init_crypto allocates some memory that will only freed by the operating system when the process will terminate and are reported as leak. Ignore these leaks to make Gitlab "asan" job so succeed. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9585951..75ab2f7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -34,6 +34,7 @@ asan:
stage: test
variables:
ASAN_OPTIONS: fast_unwind_on_malloc=false
+ LSAN_OPTIONS: suppressions=suppr.txt
script:
- ./autogen.sh
- make CFLAGS="-fsanitize=address" check || (cat test-suite.log && exit 1)
@@ -41,7 +42,6 @@ asan:
expire_in: '1 week'
paths:
- test-suite.log
- allow_failure: true
clang:
stage: build