From: Jeff King Date: Fri, 20 Mar 2015 10:07:52 +0000 (-0400) Subject: t: assume test_cmp produces verbose output X-Git-Tag: v2.4.0-rc0~1^2~31 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/5ca812a19c97a2cbfe797748bc9bf6ebde9e0f64?hp=5ca812a19c97a2cbfe797748bc9bf6ebde9e0f64 t: assume test_cmp produces verbose output Some tests call test_cmp, and if it fails show the actual output generated. This is mostly pointless, as test_cmp will already show a diff between the expected and actual output. It also fools --chain-lint by putting an "||" in the middle of the chain, so we'd rather not use this construct. Note that these cases actually show a pre-processed version of the data, rather than exactly what test_cmp would show. However, test_cmp's output is generally good for pointing the user in the right direction, and they can then dig in the trash directory themselves if they want to see more details. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano ---