summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2024-04-23 15:51:10 +0200
committerSimon Rettberg2024-04-23 15:51:10 +0200
commit8f8ea365cee5001668bd28ee413f0a7fa4b256e2 (patch)
treeff4fd68d9bb8cc456789cdbcbb6cd9601ec6b4bf
parentgithub: Use bash redirects for stdout+err (diff)
downloaddnbd3-8f8ea365cee5001668bd28ee413f0a7fa4b256e2.tar.gz
dnbd3-8f8ea365cee5001668bd28ee413f0a7fa4b256e2.tar.xz
dnbd3-8f8ea365cee5001668bd28ee413f0a7fa4b256e2.zip
github: asan: Disable leak check at exit
This would taint the exit code as some stuff is always not properly freed at exit; we mostly care about invalid memory access and the likes.
-rw-r--r--.github/workflows/test-cow-fuse.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test-cow-fuse.yml b/.github/workflows/test-cow-fuse.yml
index 5cee702..f8a71bc 100644
--- a/.github/workflows/test-cow-fuse.yml
+++ b/.github/workflows/test-cow-fuse.yml
@@ -1,5 +1,7 @@
name: test fuse cow
on: push
+env:
+ ASAN_OPTIONS: leak_check_at_exit=false
jobs:
test:
runs-on: ubuntu-latest