mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.11' into 11.0
This commit is contained in:
@@ -263,6 +263,7 @@ sub pre_setup() {
|
||||
$::opt_suite_timeout= 24 * 60; # in minutes
|
||||
$::opt_shutdown_timeout= ($interactive ? 24 * 60 : 3) * 60; # in seconds
|
||||
$::opt_start_timeout= $::opt_shutdown_timeout; # in seconds
|
||||
$::opt_debug_sync_timeout= 3000; # in seconds
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -23,7 +23,7 @@ use File::Path;
|
||||
use Carp;
|
||||
|
||||
use base qw(Exporter);
|
||||
our @EXPORT= qw(IS_CYGWIN IS_MSYS IS_WINDOWS IS_WIN32PERL IS_AIX
|
||||
our @EXPORT= qw(IS_CYGWIN IS_MSYS IS_WINDOWS IS_WIN32PERL IS_AIX IS_MAC
|
||||
native_path posix_path mixed_path
|
||||
check_socket_path_length process_alive open_for_append);
|
||||
|
||||
@@ -70,6 +70,14 @@ BEGIN {
|
||||
}
|
||||
}
|
||||
|
||||
BEGIN {
|
||||
if ($^O eq "darwin") {
|
||||
eval 'sub IS_MAC { 1 }';
|
||||
}
|
||||
else {
|
||||
eval 'sub IS_MAC { 0 }';
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# native_path
|
||||
|
Reference in New Issue
Block a user