t: redirect stderr GIT_TRACE to descriptor 4
commit025232e8aa4b56d450079528fcfbff53da3e7fa4
authorJeff King <peff@peff.net>
Fri, 13 Mar 2015 04:50:56 +0000 (13 00:50 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 13 Mar 2015 06:24:34 +0000 (12 23:24 -0700)
tree1e8e8162515f4acf16139411093969635df2b1e2
parentda706545f7a1fa97cd8d9cf40659ab2a167be7c0
t: redirect stderr GIT_TRACE to descriptor 4

If you run a test script like:

  GIT_TRACE=1 ./t0061-run-command.sh

you may get test failures, because some tests capture and
check the stderr output from git commands (and with
GIT_TRACE set to 1, the trace output will be included
there).

When we see GIT_TRACE set like this, we print a warning to
the user. However, we can do even better than that by just
pointing it to descriptor 4, which all tests leave connected
to the test script's stderr. That's likely what the user
intended (and any scripts that do want to see GIT_TRACE
output will set GIT_TRACE themselves).

Not only does this avoid false negatives in the tests, but
it means the user will actually see trace output for git
calls that redirect their stderr (whereas before, it was
sometimes confusingly buried in a file).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib.sh