mirror of
https://github.com/MariaDB/server.git
synced 2025-03-07 03:33:09 +01:00
21 lines
340 B
Bash
Executable file
21 lines
340 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test $# -ge 1 || exit 1
|
|
|
|
bin=$1; shift
|
|
valgrind=$@
|
|
|
|
$valgrind --log-file=$bin.check.valgrind $bin >$bin.check.output 2>&1
|
|
if [[ $? = 0 ]]
|
|
then
|
|
lines=$(cat $bin.check.valgrind | wc -l)
|
|
if [[ lines -ne 0 ]]
|
|
then
|
|
cat $bin.check.valgrind
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|
|
else
|
|
exit 0
|
|
fi
|