summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorJan Lindström <jan.lindstrom@mariadb.com>2015-10-05 09:27:33 +0300
committerJan Lindström <jan.lindstrom@mariadb.com>2015-10-05 09:27:33 +0300
commit9337173915fd777cb074311b48f4e2c37e691f8e (patch)
tree47a4ede04c73486368366d8c9d0124a1f89b2dd4 /mysql-test
parentba0b6685510f4a271da8d386ff75bfd83d3156c2 (diff)
downloadmariadb-git-9337173915fd777cb074311b48f4e2c37e691f8e.tar.gz
MDEV-8893: Test encryption.innodb_encryption_filekeys fails on buildbot
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/suite/encryption/r/innodb_encryption_filekeys.result1
-rw-r--r--mysql-test/suite/encryption/t/innodb_encryption_filekeys.test10
2 files changed, 8 insertions, 3 deletions
diff --git a/mysql-test/suite/encryption/r/innodb_encryption_filekeys.result b/mysql-test/suite/encryption/r/innodb_encryption_filekeys.result
index d0094c269bb..ab958004eab 100644
--- a/mysql-test/suite/encryption/r/innodb_encryption_filekeys.result
+++ b/mysql-test/suite/encryption/r/innodb_encryption_filekeys.result
@@ -1,3 +1,4 @@
+call mtr.add_suppression("trying to do an operation on a dropped tablespace .*");
SET GLOBAL innodb_file_format = `Barracuda`;
SET GLOBAL innodb_file_per_table = ON;
SET GLOBAL innodb_encrypt_tables = OFF;
diff --git a/mysql-test/suite/encryption/t/innodb_encryption_filekeys.test b/mysql-test/suite/encryption/t/innodb_encryption_filekeys.test
index 00ae9c770b0..8f0986071f1 100644
--- a/mysql-test/suite/encryption/t/innodb_encryption_filekeys.test
+++ b/mysql-test/suite/encryption/t/innodb_encryption_filekeys.test
@@ -3,6 +3,8 @@
# embedded does not support restart
-- source include/not_embedded.inc
+call mtr.add_suppression("trying to do an operation on a dropped tablespace .*");
+
--disable_query_log
let $innodb_file_format_orig = `SELECT @@innodb_file_format`;
let $innodb_file_per_table_orig = `SELECT @@innodb_file_per_table`;
@@ -129,9 +131,6 @@ SELECT COUNT(1) FROM t3;
SELECT COUNT(1) FROM t4;
SELECT COUNT(1) FROM t5;
-drop table t1,t2,t3,t4, t5;
-set GLOBAL innodb_default_encryption_key_id=1;
-
# reset system
--disable_query_log
EVAL SET GLOBAL innodb_file_per_table = $innodb_file_per_table_orig;
@@ -139,3 +138,8 @@ EVAL SET GLOBAL innodb_file_format = $innodb_file_format_orig;
EVAL SET GLOBAL innodb_encrypt_tables = $encrypt_tables;
EVAL SET GLOBAL innodb_encryption_threads = $threads;
--enable_query_log
+
+drop table t1,t2,t3,t4, t5;
+
+set GLOBAL innodb_default_encryption_key_id=1;
+