From 6ab6b1510ed0851bda335a8919047c02860fe2e8 Mon Sep 17 00:00:00 2001 From: Elena Stepanova Date: Sun, 20 Sep 2020 17:26:15 +0300 Subject: [PATCH] MDEV-23650 Test S3 in buildbot Temporarily disable failing S3 tests to allow the suite to run in buildbot: s3.partition and s3.partition_move are disabled due to MDEV-23648. While the problem is supposedly generic, the tests don't fail with Amazon setup, so they are disabled conditionally for emulator (MinIO). s3.replication_partition is disabled due to MDEV-23730, it fails both with Amazon and MinIO. s3.replication_mixed and s3.replication_stmt are disabled due to MDEV-23770, they also fail both with Amazon and the emulator. --- mysql-test/suite/s3/disabled.def | 3 +++ mysql-test/suite/s3/partition.test | 5 +++++ mysql-test/suite/s3/partition_move.test | 5 +++++ 3 files changed, 13 insertions(+) create mode 100644 mysql-test/suite/s3/disabled.def diff --git a/mysql-test/suite/s3/disabled.def b/mysql-test/suite/s3/disabled.def new file mode 100644 index 00000000000..8eae300e21e --- /dev/null +++ b/mysql-test/suite/s3/disabled.def @@ -0,0 +1,3 @@ +replication_partition : MDEV-23730: Server crashes in ha_maria::extra +replication_mixed : MDEV-23770: Replication failure +replication_stmt : MDEV-23770: Replication failure diff --git a/mysql-test/suite/s3/partition.test b/mysql-test/suite/s3/partition.test index 03bbc2f0da9..b60eb1bf2dd 100644 --- a/mysql-test/suite/s3/partition.test +++ b/mysql-test/suite/s3/partition.test @@ -1,3 +1,8 @@ +if (`SELECT @@s3_host_name <> "s3.amazonaws.com"`) +{ + skip The test is disabled for emulator environment due to MDEV-23648; +} + --source include/have_partition.inc --source include/have_s3.inc --source create_database.inc diff --git a/mysql-test/suite/s3/partition_move.test b/mysql-test/suite/s3/partition_move.test index 35edbd75b5a..1a5c45ca0b1 100644 --- a/mysql-test/suite/s3/partition_move.test +++ b/mysql-test/suite/s3/partition_move.test @@ -1,3 +1,8 @@ +if (`SELECT @@s3_host_name <> "s3.amazonaws.com"`) +{ + skip The test is disabled for emulator environment due to MDEV-23648; +} + --source include/have_partition.inc --source include/have_innodb.inc --source include/have_s3.inc