summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-06-27 11:03:52 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2022-06-27 11:03:52 +0300
commit7d92c9d212162287b52721fcea1217115853b4f7 (patch)
tree3a5bfc73fc8573fb66f944513b1e54b3dbd32a78
parent87bd79b1e7b15cd323e4b4ed8abe139895bf5b6f (diff)
downloadmariadb-git-7d92c9d212162287b52721fcea1217115853b4f7.tar.gz
Suppress a message that may be emitted on slow systems
On FreeBSD, tests run on persistent storage, and no asynchronous I/O has been implemented. Warnings about 205-second waits on dict_sys.latch may occur.
-rw-r--r--mysql-test/suite/innodb/t/corrupted_during_recovery.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/corrupted_during_recovery.test b/mysql-test/suite/innodb/t/corrupted_during_recovery.test
index 345c86badb2..fd3ddaa8204 100644
--- a/mysql-test/suite/innodb/t/corrupted_during_recovery.test
+++ b/mysql-test/suite/innodb/t/corrupted_during_recovery.test
@@ -8,6 +8,7 @@ call mtr.add_suppression("InnoDB: Database page corruption on disk or a failed r
call mtr.add_suppression("InnoDB: Failed to read page 3 from file '.*test.t1\\.ibd': Page read from tablespace is corrupted.");
call mtr.add_suppression("InnoDB: Table `test`.`t1` is corrupted. Please drop the table and recreate.");
call mtr.add_suppression("InnoDB: File '.*test/t1\\.ibd' is corrupted");
+call mtr.add_suppression("InnoDB: A long wait .* was observed for dict_sys");
--enable_query_log
let INNODB_PAGE_SIZE=`select @@innodb_page_size`;