mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
refs #5368 fix tokuvalgrind to count lines and compare them with 0 properly
git-svn-id: file:///svn/toku/tokudb@48685 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
60b9631996
commit
74a2998434
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ fi
|
|||
valgrind $args
|
||||
exitcode=$?
|
||||
if [ $exitcode = 0 ] ; then
|
||||
lines=$(wc -l $logfile)
|
||||
lines=$(wc -l <$logfile)
|
||||
if [ $lines -ne 0 ] ; then
|
||||
exitcode=$errorexitcode
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue