1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-26527 speedup appveyor build

Allow mysql_client_test to execute even if server/client auth plugins are
not built. There is a single small test that requires qa_auth_client.
This commit is contained in:
Vladislav Vaintroub
2021-09-04 20:24:37 +02:00
parent 2e39987fda
commit 16131a7e46
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,5 @@
# This test should work in embedded server after we fix mysqltest
-- source include/not_embedded.inc
# need to have the dynamic loading turned on for the client plugin tests
--source include/have_plugin_auth.inc
# Run test with default character set
--source include/default_charset.inc

View File

@ -19203,6 +19203,9 @@ static void test_bug11766854()
struct st_mysql_client_plugin *plugin;
DBUG_ENTER("test_bug11766854");
if (!getenv("QA_AUTH_CLIENT_SO"))
DBUG_VOID_RETURN;
myheader("test_bug11766854");
plugin= mysql_load_plugin(mysql, "foo", -1, 0);