Skip to content

Commit

Permalink
Update valgrind.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex authored Apr 21, 2024
1 parent e49eedd commit 99627a0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel

- name: TestNajaCore
working-directory: ${{github.workspace}}/build/test/core
Expand Down Expand Up @@ -90,8 +90,11 @@ jobs:

- name: TestDNL
working-directory: ${{github.workspace}}/build/test/dnl
run: valgrind --error-exitcode=1 --show-leak-kinds=all --leak-check=full --errors-for-leak-kinds=all ./dnlTests
run: valgrind --error-exitcode=1 ./dnlTests
#run: valgrind --error-exitcode=1 --show-leak-kinds=all --leak-check=full --errors-for-leak-kinds=all ./dnlTests

- name: TestDLE
working-directory: ${{github.workspace}}/build/test/logic_opt
run: valgrind --error-exitcode=1 --show-leak-kinds=all --leak-check=full --errors-for-leak-kinds=all ./LoadlessLogicRemoverTests
run: valgrind --error-exitcode=1 ./LoadlessLogicRemoverTests
#run: valgrind --error-exitcode=1 --show-leak-kinds=all --leak-check=full --errors-for-leak-kinds=all ./LoadlessLogicRemoverTests

0 comments on commit 99627a0

Please sign in to comment.