diff options
author | Elena Stepanova <elenst@mariadb.com> | 2022-08-28 21:23:28 +0300 |
---|---|---|
committer | Elena Stepanova <elenst@mariadb.com> | 2022-08-28 21:35:21 +0300 |
commit | 0d1de5e1d19f1e96058ab5948e184f22e7bdd908 (patch) | |
tree | 7f3721170186b21f42dd329e4c997ea657b80084 /mysql-test/suite/innodb/t | |
parent | 94e3f02db741e4a35f3aba22c258e20fe9617d75 (diff) | |
download | mariadb-git-0d1de5e1d19f1e96058ab5948e184f22e7bdd908.tar.gz |
MDEV-29403 innodb.innodb_sys_semaphore_waits fails with wrong errno 5014bb-10.3-elenst
take into account C/C specific CR_ERR_NET_WRITE error
Diffstat (limited to 'mysql-test/suite/innodb/t')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_sys_semaphore_waits.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_sys_semaphore_waits.test b/mysql-test/suite/innodb/t/innodb_sys_semaphore_waits.test index a0b9fc626f3..29ff3f69ed7 100644 --- a/mysql-test/suite/innodb/t/innodb_sys_semaphore_waits.test +++ b/mysql-test/suite/innodb/t/innodb_sys_semaphore_waits.test @@ -78,10 +78,10 @@ let $counter= 80; let $mysql_errno= 0; while (!$mysql_errno) { - --error 0,ER_SERVER_SHUTDOWN,ER_CONNECTION_KILLED,2002,2006,2013 + --error 0,ER_SERVER_SHUTDOWN,ER_CONNECTION_KILLED,2002,2006,2013,5014 show status; - --error 0,ER_SERVER_SHUTDOWN,ER_CONNECTION_KILLED,2002,2006,2013 + --error 0,ER_SERVER_SHUTDOWN,ER_CONNECTION_KILLED,2002,2006,2013,5014 select * from information_schema.innodb_sys_semaphore_waits; dec $counter; |