mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
- modified mysql-test/mysql-test-run.sh to only probe for "gcov", if
"--gcov" is actually passed as a command line option (to avoid failures on systems with no gcov installed) mysql-test/mysql-test-run.sh: - only probe for gcov, if it's actually required
This commit is contained in:
parent
a05ad2445c
commit
d7bbd4454a
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,6 @@ TAIL=tail
|
|||
ECHO=echo # use internal echo if possible
|
||||
EXPR=expr # use internal if possible
|
||||
FIND=find
|
||||
GCOV=`which gcov`
|
||||
if test $? != 0; then exit 1; fi
|
||||
PRINTF=printf
|
||||
RM=rm
|
||||
|
|
@ -276,6 +275,7 @@ while test $# -gt 0; do
|
|||
exit 1
|
||||
fi
|
||||
DO_GCOV=1
|
||||
GCOV=`which gcov`
|
||||
;;
|
||||
--gprof )
|
||||
DO_GPROF=1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue