5.5 excluded tests

This commit is contained in:
Shlomi Noach 2018-02-26 18:24:42 +02:00
parent 9cfbfbf306
commit a9ead9e0f0
4 changed files with 4 additions and 2 deletions

View File

@ -86,7 +86,7 @@ test_single() {
if [ -f $tests_path/$test_name/ignore_versions ] ; then
ignore_versions=$(cat $tests_path/$test_name/ignore_versions)
mysql_version=$(gh-ost-test-mysql-master -s -s -e "select @@version")
if echo "$mysql_version" | egrep "$ignore_versions" ; then
if echo "$mysql_version" | egrep "^${ignore_versions}" ; then
echo "ignoring"
return 0
fi

View File

@ -0,0 +1 @@
(5.5)

View File

@ -0,0 +1 @@
(5.5)

View File

@ -49,6 +49,6 @@ test_mysql_version() {
echo "Building..."
. script/build
# Test all versions:
find gh-ost-ci-env/mysql-tarballs/ -name "*.tar.gz" | while read f ; do basename $f ".tar.gz" ; done | sort -r | while read mysql_version ; do
find gh-ost-ci-env/mysql-tarballs/ -name "*.tar.gz" | while read f ; do basename $f ".tar.gz" ; done | sort | while read mysql_version ; do
test_mysql_version "$mysql_version"
done