Jiang Xin <worldhello.net@xxxxxxxxx> writes: > From: Jiang Xin <zhiyou.jx@xxxxxxxxxxxxxxx> > > The test case "push with config push.useBitmap" of t5516 was introduced > in commit 82f67ee13f (send-pack.c: add config push.useBitmaps, > 2022-06-17). It won't work in verbose mode, e.g.: > > $ sh t5516-fetch-push.sh --run='1,115' -v > > This is because "git-push" will run in a tty in this case, and the Right. "-v" involves redirecting the stdout/stderr of the commands being run in the test to stdout/stderr in the environment the tests are run, so $ sh t5516-fetch-push.sh --run='1,115' -v >log 2>&1 would have succeeded correctly. Forcing the behaviour with the "--quiet" option is certainly a good way to gain stability.