mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
post-merge changes to the mysql-test suite
mysql-test/include/check_ipv6.inc: don't try to connect to ipv6 address - the server isn't necessarily listening (e.g. a master doesn't, but a slave does. or vice versa) mysql-test/include/default_mysqld.cnf: move hard-coded values from ConfigFactory.pm to a template. really disable syncs mysql-test/include/have_archive_plugin.inc: wrong test. plugin is loaded in the test, it cannot be available before it mysql-test/include/have_blackhole_plugin.inc: wrong test. plugin is loaded in the test, it cannot be available before it mysql-test/include/have_federated_plugin.inc: wrong test. plugin is loaded in the test, it cannot be available before it mysql-test/lib/My/ConfigFactory.pm: move hard-coded values from ConfigFactory.pm to a template. really disable syncs mysql-test/mysql-test-run.pl: formatting mysql-test/suite/funcs_1/t/is_engines_federated.opt: federated can be a plugin mysql-test/suite/innodb/suite.pm: don't load xtradb plugin in embedded server - it lacks some symbols that xtradb needs mysql-test/suite/unit/suite.pm: don't run unit tests in --embedded-server (for simplicity and speed)
This commit is contained in:
@@ -161,8 +161,27 @@ my $path_config_file; # The generated config file, var/my.cnf
|
||||
# executables will be used by the test suite.
|
||||
our $opt_vs_config = $ENV{'MTR_VS_CONFIG'};
|
||||
|
||||
my $DEFAULT_SUITES= "main,sys_vars,binlog,federated,rpl,innodb,perfschema,maria,parts,percona,vcol,oqgraph,sphinx,pbxt,unit" .
|
||||
",handler,optimizer_unfixed_bugs";
|
||||
my $DEFAULT_SUITES= join(',', qw(
|
||||
main
|
||||
binlog
|
||||
federated
|
||||
funcs_1
|
||||
funcs_2
|
||||
handler
|
||||
innodb
|
||||
maria
|
||||
optimizer_unfixed_bugs
|
||||
oqgraph
|
||||
parts
|
||||
pbxt
|
||||
percona
|
||||
perfschema
|
||||
rpl
|
||||
sphinx
|
||||
sys_vars
|
||||
unit
|
||||
vcol
|
||||
));
|
||||
my $opt_suites;
|
||||
|
||||
our $opt_verbose= 0; # Verbose output, enable with --verbose
|
||||
@@ -3447,12 +3466,6 @@ sub mysql_install_db {
|
||||
my $exe_mysqld_bootstrap =
|
||||
$ENV{'MYSQLD_BOOTSTRAP'} || find_mysqld($install_basedir);
|
||||
|
||||
# MASV add only to bootstrap.test
|
||||
# Setup args for bootstrap.test
|
||||
#
|
||||
#mtr_init_args(\$cmd_args);
|
||||
#mtr_add_arg($cmd_args, "--loose-skip-aria")
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# export MYSQLD_BOOTSTRAP_CMD variable containing <path>/mysqld <args>
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user