summaryrefslogtreecommitdiffstats
path: root/maildir/testsuitevalgrind
blob: 370097936a5dd4b09e1e828512351e3b586912cf (plain)
1
2
3
4
5
6
7
8
9
10
#! /bin/bash

valgrind --tool=memcheck --leak-check=yes --error-exitcode=57 "$@" && exit 0
if test "$?" != 57
then
    exit $?
fi

echo "$@" >>confmdtesterror
exit 0