mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-5707 MTR fails on kfreebsd
apply debian's patch to workaround kfreebsd bug
This commit is contained in:
@ -110,6 +110,8 @@ sub check_socket_path_length {
|
|||||||
# This may not be true, but we can't test for it on AIX due to Perl bug
|
# This may not be true, but we can't test for it on AIX due to Perl bug
|
||||||
# See Bug #45771
|
# See Bug #45771
|
||||||
return 0 if ($^O eq 'aix');
|
return 0 if ($^O eq 'aix');
|
||||||
|
# See Debian bug #670722 - failing on kFreeBSD even after setting short path
|
||||||
|
return 0 if $^O eq 'gnukfreebsd' and length $path < 40;
|
||||||
|
|
||||||
require IO::Socket::UNIX;
|
require IO::Socket::UNIX;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user