mirror of
https://github.com/MariaDB/server.git
synced 2025-11-25 17:25:02 +03:00
MDEV-25894: support AIX as a platform in mtr
Add fixed for tests mysqld--help,aix.rdiff and sysvars_server_notembedded,aix.rdiff AIX couldn't compile in embedded mode so leaving sysvars_server_embedded for later (if required).
This commit is contained in:
@@ -17,7 +17,13 @@ sub skip_combinations {
|
||||
unless $ENV{DEBUG_KEY_MANAGEMENT_SO};
|
||||
|
||||
# don't run tests for the wrong platform
|
||||
$skip{'include/platform.combinations'} = [ (IS_WINDOWS) ? 'unix' : 'win' ];
|
||||
if (IS_WINDOWS) {
|
||||
$skip{'include/platform.combinations'} = [ 'aix', 'unix' ];
|
||||
} elsif (IS_AIX) {
|
||||
$skip{'include/platform.combinations'} = [ 'win', 'unix' ];
|
||||
} else {
|
||||
$skip{'include/platform.combinations'} = [ 'aix', 'win' ];
|
||||
}
|
||||
|
||||
$skip{'include/maybe_debug.combinations'} =
|
||||
[ defined $::mysqld_variables{'debug-dbug'} ? 'release' : 'debug' ];
|
||||
|
||||
Reference in New Issue
Block a user