summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSimon Rettberg2024-04-23 14:31:29 +0200
committerSimon Rettberg2024-05-13 18:26:42 +0200
commit02c187e50061329720f5b65aff4583591cc7131a (patch)
tree28951b568bab74b75070ceb3daa7837ebf8083c6 /.github
parent[FUSE] Fix check for failed statsfile write (diff)
downloaddnbd3-02c187e50061329720f5b65aff4583591cc7131a.tar.gz
dnbd3-02c187e50061329720f5b65aff4583591cc7131a.tar.xz
dnbd3-02c187e50061329720f5b65aff4583591cc7131a.zip
github: Enable address sanitizer
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-cow-fuse.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/test-cow-fuse.yml b/.github/workflows/test-cow-fuse.yml
index a8f5f1b..0cda3d4 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
@@ -24,6 +26,7 @@ jobs:
cmake -B ${{ github.workspace }}/build \
-S ${{ github.workspace }} \
-D CMAKE_BUILD_TYPE=${{ matrix.config.build-type }} \
+ -D CMAKE_C_FLAGS=-fsanitize=address \
-D DNBD3_KERNEL_MODULE=OFF \
-D DNBD3_BENCHMARK=OFF \
-D DNBD3_CLIENT_FUSE=ON \