Skip to content

Commit

Permalink
[ci] supress error with valgrind: add --max-stackframe
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpoelen committed Jan 12, 2024
1 parent 6e176ae commit 36c3ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gitlab-analyze.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if (( $fast == 0 )); then
while read l ; do
f=${l#*release/tests/}
f=valgrind_reports/"${f//\//@}".xml
cmds+=("valgrind --child-silent-after-fork=yes --xml=yes --xml-file=$f $l")
cmds+=("valgrind --max-stackframe=234425648 --child-silent-after-fork=yes --xml=yes --xml-file=$f $l")
done < <(find ./bin/gcc*/release/tests/ -executable -type f -name test_'*')
mkdir -p valgrind_reports
/usr/bin/time --format="%Es - %MK" parallel -j4 ::: "${cmds[@]}"
Expand Down

0 comments on commit 36c3ba4

Please sign in to comment.