about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-05 21:33:40 +0000
committerEric Wong <e@80x24.org>2019-05-05 23:22:36 +0000
commit632ed77815b8ad0f683abe78f32544c7ca7b9aed (patch)
treeb30bf8d12db17dddf090ff7f0bb09d151fd9cb69
parent48cd028855eb40557275a7e914da5cb3f847006c (diff)
downloadpublic-inbox-632ed77815b8ad0f683abe78f32544c7ca7b9aed.tar.gz
FreeBSD does not allow non-root users to set S_ISGID;
so git skips this bit on FreeBSD and Debian/kFreeBSD
platforms.
-rw-r--r--t/search.t12
1 files changed, 11 insertions, 1 deletions
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");
 }