t/search.t | 6 +++--- diff --git a/t/search.t b/t/search.t index c40e1363d07b7b91b77568ef0988ec8f9d25b9be..b9aa995b51623e6a59680525a4aa386852157b78 100644 --- a/t/search.t +++ b/t/search.t @@ -438,9 +438,9 @@ my $all_mask = 07777; my $dir_mask = 02770; -# FreeBSD does not allow non-root users to set S_ISGID, so -# git doesn't set it, either (see DIR_HAS_BSD_GROUP_SEMANTICS in git.git) -if ($^O =~ /freebsd/i) { +# FreeBSD and apparently OpenBSD does not allow non-root users to set S_ISGID, +# so git doesn't set it, either (see DIR_HAS_BSD_GROUP_SEMANTICS in git.git) +if ($^O =~ /(?:free|open)bsd/i) { $all_mask = 0777; $dir_mask = 0770; }