Skip to content
Snippets Groups Projects
Commit 0e6f4dd3 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

allow excluding tests from valgrind

parent 72c26263
No related branches found
No related tags found
No related merge requests found
/***********************************************************************************************************************
buildTestDeploy() is called from the .jenkinsfile of each project
Note: set "env.valgrindExcludes" to a space-separated list of test names to be excluded from valgrind before calling!
***********************************************************************************************************************/
......
......@@ -4,6 +4,8 @@
***********************************************************************************************************************/
/**********************************************************************************************************************/
def doBuildTestDeploy(ArrayList<String> dependencyList, String label, String buildType) {
doPrepare(true)
......@@ -257,8 +259,10 @@ def doValgrind(String label, String buildType) {
cd "${dir}"
for test in ${EXECLIST} ; do
testname=`basename ${test}`
sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=memcheck --leak-check=full --undef-value-errors=yes --xml=yes --xml-file=valgrind.${testname}.memcheck.valgrind ${test}
# sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=helgrind --xml=yes --xml-file=valgrind.${testname}.helgrind.valgrind ${test}
if [ -z "`echo " ${valgrindExcludes} " | grep " ${test} "`" ]; then
sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=memcheck --leak-check=full --undef-value-errors=yes --xml=yes --xml-file=valgrind.${testname}.memcheck.valgrind ${test}
# sudo -u msk_jenkins valgrind --gen-suppressions=all --trace-children=yes --tool=helgrind --xml=yes --xml-file=valgrind.${testname}.helgrind.valgrind ${test}
fi
done
cd /scratch/build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment