summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2022-05-10 11:46:05 +0200
committerSergei Golubchik <serg@mariadb.org>2022-05-10 11:46:05 +0200
commitfe3d07cab82b2215dc64f52ac93122072c33d021 (patch)
treedb17cfc8ee37c21273ea983c1ebb28911d8ebf3e
parentef781162ff2eb97f405b19dc150ab674e91dbc05 (diff)
downloadmariadb-git-fe3d07cab82b2215dc64f52ac93122072c33d021.tar.gz
fix plugins.multiauth for AIX
-rw-r--r--mysql-test/suite/plugins/t/multiauth.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/suite/plugins/t/multiauth.test b/mysql-test/suite/plugins/t/multiauth.test
index 4bf3424ee9d..86c98a5d5c3 100644
--- a/mysql-test/suite/plugins/t/multiauth.test
+++ b/mysql-test/suite/plugins/t/multiauth.test
@@ -186,7 +186,8 @@ eval $dreplace, mysqltest1;
create user mysqltest1 identified via ed25519 as password("good");
show create user mysqltest1;
--echo # no plugin = failure
---replace_regex /loaded: .*client_ed25519.so: cannot open shared object file: No such file or directory/loaded: no such file/ /loaded: Cannot open.*client_ed25519.so./loaded: no such file/ /loaded: .*Could not load module.*directory/loaded: no such file/
+# covers Linux (1st re), FreeBSD (2nd), AIX (3rd and 4th)
+--replace_regex /loaded: .*client_ed25519.so: cannot open shared object file: No such file or directory/loaded: no such file/ /loaded: Cannot open.*client_ed25519.so./loaded: no such file/ /loaded: .*Could not load module.*client_ed25519.so.\n/loaded: no such file/ /System error: No such file or directory//
--error 1
--exec $try_auth -u mysqltest1 -pgood --plugin-dir=$plugindir/no
alter user mysqltest1 identified via ed25519 as password("good") OR mysql_native_password as password("works");