Commit 6c3769ff authored by lenz@mysql.com's avatar lenz@mysql.com
Browse files

- 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)
parent f2f6f6d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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