Skip to content

Commit a9ead9e

Browse files
author
Shlomi Noach
committed
5.5 excluded tests
1 parent 9cfbfbf commit a9ead9e

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

localtests/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ test_single() {
8686
if [ -f $tests_path/$test_name/ignore_versions ] ; then
8787
ignore_versions=$(cat $tests_path/$test_name/ignore_versions)
8888
mysql_version=$(gh-ost-test-mysql-master -s -s -e "select @@version")
89-
if echo "$mysql_version" | egrep "$ignore_versions" ; then
89+
if echo "$mysql_version" | egrep "^${ignore_versions}" ; then
9090
echo "ignoring"
9191
return 0
9292
fi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(5.5)

localtests/tz/ignore_versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(5.5)

script/cibuild-gh-ost-replica-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ test_mysql_version() {
4949
echo "Building..."
5050
. script/build
5151
# Test all versions:
52-
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
52+
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
5353
test_mysql_version "$mysql_version"
5454
done

0 commit comments

Comments
 (0)