PT-1810 Updated deps

This commit is contained in:
Carlos Salguero
2020-03-17 22:45:31 -03:00
parent 8abdc07050
commit a7ec40383f
4 changed files with 27 additions and 38 deletions

12
runtests.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
MYSQL_VERSION=$(mysql -ss -e "SELECT VERSION()")
LOGFILE=${HOME}/pt-tests-$(git rev-parse --abbrev-ref HEAD)-mysql-${MYSQL_VERSION}.log
echo "" > ${LOGFILE}
export PERCONA_TOOLKIT_SANDBOX=${HOME}/mysql/my-5.7
for d in $(ls -d t/*)
do
sandbox/test-env restart
prove -vw $d | tee -a ${LOGFILE}
done