mirror of
https://github.com/MariaDB/server.git
synced 2025-11-16 20:23:18 +03:00
- dynamic configuration support - safe process - cleanups - create new suite for fedarated
17 lines
318 B
Perl
17 lines
318 B
Perl
#
|
|
# Defines used to control how mysql-test-run.pl
|
|
# should work in the current version of MySQL
|
|
#
|
|
|
|
# Control if the suite name should be output before testname
|
|
sub SHOW_SUITE_NAME { return 1; };
|
|
|
|
|
|
# Control which suites are run by default
|
|
sub DEFAULT_SUITES { return "main,binlog,federated,rpl,rpl_ndb,ndb"; };
|
|
|
|
|
|
|
|
1;
|
|
|