Hi Junio, On Wed, 21 Sep 2022, Junio C Hamano wrote: > "Johannes Schindelin via GitGitGadget" <gitgitgadget@xxxxxxxxx> > writes: > > > +test_expect_success 'merge-ort fails gracefully in a read-only repository' ' > > + git init --bare read-only && > > + git push read-only side1 side2 && > > + test_when_finished "chmod -R u+w read-only" && > > + chmod -R a-w read-only && > > + test_must_fail git -C read-only merge-tree side1 side2 > > +' > > Doesn't this test need a prerequisite to guard against those whose > filesystem lacks SANITY? Yes, of course! Thank you for the sanity check (pun intended!), Dscho