mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
8447edb747
When testing installed packages, the client (mariadb or mysql) can have plugins stored in a separate location compared to server. This change ensures that the correct paths are used for the plugin-dir directive in the my.cnf generated by mysql-test-run. The directives in my.cnf will be replaced like so: [client] plugin-dir=$client_plugindir [mysqld] plugin-dir=$plugindir where $<variable-name> corresponds to the variable name in mtr.
25 lines
566 B
INI
25 lines
566 B
INI
#
|
|
# We use default-character-set=latin1 to avoid character set auto-detection
|
|
# when running tests - not to depend on the current machine localization.
|
|
#
|
|
|
|
[mysql]
|
|
default-character-set=latin1
|
|
|
|
[mysqlshow]
|
|
default-character-set=latin1
|
|
|
|
[mysqlimport]
|
|
default-character-set=latin1
|
|
|
|
[mysqlcheck]
|
|
default-character-set=latin1
|
|
|
|
[mysql_upgrade]
|
|
default-character-set=latin1
|
|
|
|
[mysqltest]
|
|
loose-ssl-ca=@ENV.MYSQL_TEST_DIR/std_data/cacert.pem
|
|
loose-ssl-cert=@ENV.MYSQL_TEST_DIR/std_data/client-cert.pem
|
|
loose-ssl-key=@ENV.MYSQL_TEST_DIR/std_data/client-key.pem
|
|
loose-skip-ssl
|