|
From: flowher <krz...@le...> - 2012-03-01 14:24:28
|
Hello, I'm having an issue with valgrind - mine regression takes 4 hours instead of 45 mins when run in valgrind. I would like to keep my set of regression tests untouched as they are quite complicated. Another idea is to try to speed up valgrind's memcheck, so will memcheck speed up if I: 1. reduce number of memory leaks (our product is quite new and right now we have around 50k records per build) 2. remove/add some options - right now we have set below, might be that we need only those which are critical and we can leave with the rest. so will valgrind speed up f.e. by removing show-reachable or any others which are kind of "heavy" --tool=memcheck --xml=yes --log-fd=-1 --xml-file=$OUTFILE --demangle=no --error-limit=no --leak-check=full --undef-value-errors=no --show-reachable=yes --suppressions=$SUPDIR/valgrind_leak_suppressions.sup --time-stamp=yes --read-var-info=yes" 3. substitute valgrind with any other tool (for linux), in this case what else is worth checking ? All ideas welcome :) Kris |