diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-01-07 13:35:32 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-01-07 13:35:32 +0200 |
commit | d2697dfbc63a44544c8fd8a80259d22366bf68b3 (patch) | |
tree | 83f717b2b807e0f124ed30efe66e3c7c7b0b9d16 /mysql-test/suite | |
parent | d3e52ff24d808a622b9b154cc279d0d41841bc7f (diff) | |
download | mariadb-git-d2697dfbc63a44544c8fd8a80259d22366bf68b3.tar.gz |
MDEV-20839 encryption.innodb-redo-badkey sporadically fails on buildbot with page dump
The test encryption.innodb-redo-badkey will by design cause access
to pages that appear corrupted (due to incorrect encryption key).
Let us disable the page dumps by requiring the test to be run on
a debug server. Page dumps on debug builds were already disabled
in MDEV-19766.
Diffstat (limited to 'mysql-test/suite')
-rw-r--r-- | mysql-test/suite/encryption/t/innodb-redo-badkey.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/encryption/t/innodb-redo-badkey.test b/mysql-test/suite/encryption/t/innodb-redo-badkey.test index d18fe5ba7d9..50f81deb462 100644 --- a/mysql-test/suite/encryption/t/innodb-redo-badkey.test +++ b/mysql-test/suite/encryption/t/innodb-redo-badkey.test @@ -2,6 +2,10 @@ -- source include/have_file_key_management_plugin.inc # embedded does not support restart -- source include/not_embedded.inc +# MDEV-20839 innodb-redo-badkey sporadically fails on buildbot with page dump +# We only require a debug build to avoid getting page dumps, making use of +# MDEV-19766: Disable page dump output in debug builds +-- source include/have_debug.inc call mtr.add_suppression("Plugin 'file_key_management'"); call mtr.add_suppression("Plugin 'InnoDB' init function returned error."); |