Skip to content

Commit 86fc5ec

Browse files
committed
MDEV-13559 encryption.innodb-redo-badkey failed in buildbot
Add suppressions for the read and decompression errors. This may be 10.3 specific and related to MDEV-13536 which increases purge activity. But it does not hurt to suppress rarely occurring and plausible error messages for this fault-injection test already in 10.2.
1 parent 8a9e9d8 commit 86fc5ec

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

mysql-test/suite/encryption/r/innodb-redo-badkey.result

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
call mtr.add_suppression("Plugin 'file_key_management'");
22
call mtr.add_suppression("Plugin 'InnoDB' init function returned error.");
3-
call mtr.add_suppression("InnoDB: The page \[page id: space=[1-9][0-9]*, page number=[0-9]+\] in file test/t[1-4] cannot be decrypted");
3+
call mtr.add_suppression("InnoDB: The page \\[page id: space=[1-9][0-9]*, page number=[0-9]+\\] in file test/t[1-4] cannot be decrypted");
4+
call mtr.add_suppression("InnoDB: Unable to decompress .*.test.t1\\.ibd\\[page id: space=[1-9][0-9]*, page number=[0-9]+\\]");
5+
call mtr.add_suppression("InnoDB: Database page corruption on disk or a failed file read of tablespace test/t1 page \\[page id: space=[1-9][0-9]*, page number=[0-9]*\\]");
46
call mtr.add_suppression("InnoDB: Plugin initialization aborted");
57
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed");
68
# Restart mysqld --file-key-management-filename=keys2.txt

mysql-test/suite/encryption/t/innodb-redo-badkey.test

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
call mtr.add_suppression("Plugin 'file_key_management'");
77
call mtr.add_suppression("Plugin 'InnoDB' init function returned error.");
8-
call mtr.add_suppression("InnoDB: The page \[page id: space=[1-9][0-9]*, page number=[0-9]+\] in file test/t[1-4] cannot be decrypted");
8+
call mtr.add_suppression("InnoDB: The page \\[page id: space=[1-9][0-9]*, page number=[0-9]+\\] in file test/t[1-4] cannot be decrypted");
9+
call mtr.add_suppression("InnoDB: Unable to decompress .*.test.t1\\.ibd\\[page id: space=[1-9][0-9]*, page number=[0-9]+\\]");
10+
call mtr.add_suppression("InnoDB: Database page corruption on disk or a failed file read of tablespace test/t1 page \\[page id: space=[1-9][0-9]*, page number=[0-9]*\\]");
911
call mtr.add_suppression("InnoDB: Plugin initialization aborted");
1012
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed");
1113

0 commit comments

Comments
 (0)