Skip to content

Commit 5b28ea2

Browse files
committed
Add suppression generation
1 parent b6ca3b5 commit 5b28ea2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,10 +1013,10 @@ jobs:
10131013
else
10141014
if [[ "${{ matrix.clang-runtime }}" == "17" ]]; then
10151015
echo "Valgrind reports true for clang-runtime 17 due to problems with LLVM"
1016-
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v || true
1016+
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --gen-suppressions=all --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v || true
10171017
else
10181018
echo "Running valgrind on passing tests"
1019-
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v
1019+
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --gen-suppressions=all --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v
10201020
fi
10211021
fi
10221022
export RETCODE=+$?

0 commit comments

Comments
 (0)