gplugin/builders

The perl option was renamed to perl5

2020-09-16, Gary Kramlich
85ec92fb2a2c
file isExecutable
The perl option was renamed to perl5
#!/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 \
$@