On Thu, Oct 13, 2022 at 6:40 AM René Scharfe <l.s.r@xxxxxx> wrote: > +test_expect_success 'git archive --verbose' ' > + git archive --verbose HEAD >verbose.tar 2>err && > + test_cmp_bin b.tar verbose.tar && > + find a -type d | sed s-\$-/- >verbose.lst && > + find a \! -type d >>verbose.lst && Aside: I was curious whether or not we care about older `find` implementations which don't print anything at all if `-print` isn't specified, but I see that the test suite already has a mixture of `find` invocations -- some with and some without `-print` -- so that answers my question.