test-lib: make "-x" work with "--verbose-log"
commitf5ba2de6bc67082d01742ee6ce892fbcff7b97af
authorJeff King <peff@peff.net>
Fri, 8 Dec 2017 10:47:17 +0000 (8 05:47 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 8 Dec 2017 17:03:38 +0000 (8 09:03 -0800)
treef6987eb9280618d34e7d4c60c4834b89bd5d373f
parent9be795fbce210dfc19536cfcd4351134a99edf65
test-lib: make "-x" work with "--verbose-log"

The "-x" tracing option implies "--verbose". This is a
problem when running under a TAP harness like "prove", where
we need to use "--verbose-log" instead. Instead, let's
handle this the same way we do for --valgrind, including the
recent fix from 88c6e9d31c (test-lib: --valgrind should not
override --verbose-log, 2017-09-05). Namely, let's enable
--verbose only when we know there isn't a more specific
verbosity option indicated.

Note that we also have to tweak `want_trace` to turn it on
(previously we just lumped $verbose_log in with $verbose,
but now we don't necessarily auto-set the latter).

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