gplugin/builders

Update pvs-studio to the latest version

2020-07-05, Gary Kramlich
7598ad2960df
file isExecutable
Update pvs-studio to the latest version
#!/bin/sh -e
LOCAL_SUPPRESSIONS=
if [ -f ${CONVEY_WORKSPACE}/gplugin/share/valgrind/gplugin.supp ] ; then
LOCAL_SUPPRESSIONS="--suppressions=${CONVEY_WORKSPACE}/gplugin/share/valgrind/gplugin.supp"
fi
LEAK_KINDS="definite"
valgrind \
--suppressions=/usr/share/glib-2.0/valgrind/glib.supp \
--suppressions=/usr/share/doc/python3-devel/valgrind-python.supp \
${LOCAL_SUPPRESSIONS} \
--leak-check=full \
--show-leak-kinds=${LEAK_KINDS} \
--error-exitcode=1 \
--track-origins=yes \
$@