]> git.ipfire.org Git - thirdparty/git.git/commit
t0610: execute git-pack-refs(1) with specified umask
authorPatrick Steinhardt <ps@pks.im>
Tue, 9 Apr 2024 09:57:32 +0000 (11:57 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 9 Apr 2024 21:14:00 +0000 (14:14 -0700)
commit69d87802da45de04c705351a397f76a691d596ea
tree5583ceef9588ecbf1178aeea7197e3aee1ad6035
parent2f960dd5fe484679486cfdd42a3f0015d97fa822
t0610: execute git-pack-refs(1) with specified umask

The tests for git-pack-refs(1) with the `core.sharedRepository` config
execute git-pack-refs(1) outside of the shell that has the expected
umask set. This is wrong because we want to test the behaviour of that
command with different umasks. The issue went unnoticed because most
distributions have a default umask of 0022, and we only ever test with
`--shared=true`, which re-adds the group write bit.

Fix the issue by moving git-pack-refs(1) into the umask'd shell and add
a bunch of test cases that exercise behaviour more thoroughly.

Note that we drop the check for whether `core.sharedRepository` was set
to the correct value to make the test setup a bit easier. We should be
able to rely on git-init(1) doing its thing correctly. Furthermore, to
help readability, we convert tests that pass `--shared=true` to instead
pass the equivalent `--shared=group`.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0610-reftable-basics.sh