We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18082a0 commit a560dd7Copy full SHA for a560dd7
.github/workflows/valgrind.yml
@@ -32,7 +32,7 @@ jobs:
32
- name: Test
33
working-directory: ${{runner.workspace}}/build
34
shell: bash
35
- run: valgrind ./bin/unit_tests
+ run: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ./bin/unit_tests
36
37
instance_tests:
38
runs-on: ${{ matrix.os }}
@@ -63,4 +63,4 @@ jobs:
63
64
65
66
- run: valgrind ctest -E unit.* --timeout 1000 --output-on-failure
+ run: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s ctest -E unit.* --timeout 1000 --output-on-failure
0 commit comments