diff options
| author | Simon Rettberg | 2024-04-23 15:51:10 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2024-04-23 15:51:10 +0200 |
| commit | 8f8ea365cee5001668bd28ee413f0a7fa4b256e2 (patch) | |
| tree | ff4fd68d9bb8cc456789cdbcbb6cd9601ec6b4bf /.github/workflows | |
| parent | github: Use bash redirects for stdout+err (diff) | |
| download | dnbd3-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.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test-cow-fuse.yml | 2 |
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 |
