From: SZEDER Gábor Date: Fri, 23 Feb 2018 23:39:47 +0000 (+0100) Subject: t5570-git-daemon: don't check the stderr of a subshell X-Git-Tag: v2.17.0-rc0~14^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=91538d0cde9101599c0df0b7f01894edf0fd8e6b;p=thirdparty%2Fgit.git t5570-git-daemon: don't check the stderr of a subshell The test 'no-op fetch without "-v" is quiet' in 't5570-git-daemon.sh' fails when the test script is run with '-x' tracing (and using a shell other than a Bash version supporting BASH_XTRACEFD). The reason for the failure is that the test checks the emptiness of a subshell's stderr, which includes the trace of commands executed in that subshell as well, throwing off the emptiness check. Save the stderr of 'git fetch' only instead of the whole subshell's, so it remains free from tracing output. After this change t5570 passes with '-x', even when running with /bin/sh. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/t/t5570-git-daemon.sh b/t/t5570-git-daemon.sh index 755b05a8ae..0d4c52016b 100755 --- a/t/t5570-git-daemon.sh +++ b/t/t5570-git-daemon.sh @@ -50,7 +50,7 @@ test_expect_success 'no-op fetch -v stderr is as expected' ' ' test_expect_success 'no-op fetch without "-v" is quiet' ' - (cd clone && git fetch) 2>stderr && + (cd clone && git fetch 2>../stderr) && ! test -s stderr '