diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-10-31 10:32:48 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-10-31 10:53:22 +0100 |
commit | a6e000049401eeebccae82e1fc040cbe9b04c66a (patch) | |
tree | 6b19c452e735d07d1f69940e38bdb10761ec0c96 /mysql-test/suite.pm | |
parent | f4eec7fab076503177be7f51c438d1cd80cd723c (diff) | |
parent | 09e97299ba893b7578cac8160b3b687b0594aeee (diff) | |
download | mariadb-git-a6e000049401eeebccae82e1fc040cbe9b04c66a.tar.gz |
Merge branch '10.0' into 10.1
Diffstat (limited to 'mysql-test/suite.pm')
-rw-r--r-- | mysql-test/suite.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/suite.pm b/mysql-test/suite.pm index 5ac3bd3e138..959329d1641 100644 --- a/mysql-test/suite.pm +++ b/mysql-test/suite.pm @@ -26,6 +26,9 @@ sub skip_combinations { # don't run tests for the wrong platform $skip{'include/platform.combinations'} = [ (IS_WINDOWS) ? 'unix' : 'win' ]; + $skip{'include/maybe_debug.combinations'} = + [ defined $::mysqld_variables{'debug-dbug'} ? 'release' : 'debug' ]; + # and for the wrong word size # check for exact values, in case the default changes to be small everywhere my $longsysvar= $::mysqld_variables{'max-binlog-stmt-cache-size'}; @@ -36,9 +39,6 @@ sub skip_combinations { die "unknown value max-binlog-stmt-cache-size=$longsysvar" unless $val_map{$longsysvar}; $skip{'include/word_size.combinations'} = [ $val_map{$longsysvar} ]; - $skip{'include/maybe_debug.combinations'} = - [ defined $::mysqld_variables{'debug-dbug'} ? 'release' : 'debug' ]; - # as a special case, disable certain include files as a whole $skip{'include/not_embedded.inc'} = 'Not run for embedded server' if $::opt_embedded_server; |