diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-09-26 10:22:44 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-10-01 23:38:27 +0200 |
commit | 93b50e64a04efd54ab1ef64f593da0d4a7de6fb6 (patch) | |
tree | 52b26973af7ae48222a103628b84a8688aaaa246 /mysql-test/lib | |
parent | 4bb49d84a9df8c3f29683bfe8503a575bc0ab84b (diff) | |
download | mariadb-git-93b50e64a04efd54ab1ef64f593da0d4a7de6fb6.tar.gz |
cleanup: remove galera/wsrep magic from mtr
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_cases.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mysql-test/lib/mtr_cases.pm b/mysql-test/lib/mtr_cases.pm index 7415b229862..441fd6e6559 100644 --- a/mysql-test/lib/mtr_cases.pm +++ b/mysql-test/lib/mtr_cases.pm @@ -861,8 +861,6 @@ sub collect_one_test_case { # Suite has no config, autodetect which one to use if ($tinfo->{rpl_test}) { $config= "suite/rpl/my.cnf"; - } elsif ($tinfo->{galera_test}) { - $config= "suite/galera/my.cnf"; } else { $config= "include/default_my.cnf"; } @@ -983,7 +981,6 @@ my $tags_map= {'big_test' => ['big_test', 1], 'master-slave' => ['rpl_test', 1], 'ndb_master-slave' => ['rpl_test', 1, 'ndb_test', 1], 'long_test' => ['long_test', 1], - 'galera_init' => ['galera_test', 1], }; my $tags_regex_string= join('|', keys %$tags_map); my $tags_regex= qr:include/($tags_regex_string)\.inc:o; |