From 632ed77815b8ad0f683abe78f32544c7ca7b9aed Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 5 May 2019 21:33:40 +0000 Subject: t/search.t: fix permissions check on FreeBSD FreeBSD does not allow non-root users to set S_ISGID; so git skips this bit on FreeBSD and Debian/kFreeBSD platforms. --- t/search.t | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/t/search.t b/t/search.t index 6415a644..35d71473 100644 --- a/t/search.t +++ b/t/search.t @@ -430,13 +430,23 @@ $ibx->with_umask(sub { is($ro->lookup_article($art->{num}), undef, 'gone from OVER DB') if defined($art); }); +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) { + $all_mask = 0777; + $dir_mask = 0770; +} + foreach my $f ("$git_dir/public-inbox/msgmap.sqlite3", "$git_dir/public-inbox", glob("$git_dir/public-inbox/xapian*/"), glob("$git_dir/public-inbox/xapian*/*")) { my @st = stat($f); my ($bn) = (split(m!/!, $f))[-1]; - is($st[2] & 07777, -f _ ? 0660 : 02770, + is($st[2] & $all_mask, -f _ ? 0660 : $dir_mask, "sharedRepository respected for $bn"); } -- cgit v1.2.3-24-ge0c7