Skip to content

Commit

Permalink
fix LSAN options
Browse files Browse the repository at this point in the history
  • Loading branch information
RSchwan committed Mar 2, 2024
1 parent df60155 commit 480e58e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,11 @@ jobs:
run: cmake --build . -- -j2

- name: Test piqp
if: runner.os == 'Windows'
working-directory: build
run: ctest --test-dir tests --verbose

- name: Test piqp
if: runner.os != 'Windows'
working-directory: build
run: ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=tests/lsan/suppressions.txt ctest --test-dir tests --verbose
run: ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=lsan/suppressions.txt ctest --test-dir tests --verbose

0 comments on commit 480e58e

Please sign in to comment.