mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
63b1969fbb
git-svn-id: file:///svn/toku/tokudb@43179 c7de825b-a66e-492c-adef-691d508d4ae1
21 lines
332 B
Bash
Executable file
21 lines
332 B
Bash
Executable file
#!/bin/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
|