1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03: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:
unknown
2002-09-23 21:30:08 +02:00
parent a05ad2445c
commit d7bbd4454a

View File

@ -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