Daniel Barkalow <barkalow@xxxxxxxxxxxx> writes: > On Tue, 5 Feb 2008, Junio C Hamano wrote: > >> Daniel Barkalow <barkalow@xxxxxxxxxxxx> writes: >> >> > Well, it's something I tripped over when builtin-checkout wasn't passing >> > the tests and I couldn't figure out what it was doing wrong from the >> > output. Like [3/9], it's relevant to evaluating whether the series works, >> > even if it's not important for whether it actually does work. >> >> Yeah, using "diff -u" instead of just "diff" is an improvement >> for debuggability which matters a lot in the test scripts. > > I think I asked before and didn't hear back (or maybe I got distracted > and didn't ask); do you want this to use "diff -u" everywhere or "git > diff" everywhere? This test is currently part "diff" and part "git diff", > and I went for git diff" everywhere, but you seemed to prefer "diff -u". Typically the test sequence is "do this with git, do that with git, produce the output with git, now what happened? did we produce a correct result?" And we often compare 'expect' and 'actual' to see if there are discrepancies. My preference is NEVER using "git diff" when comparing expected result and the actual output from git. When "git diff" has breakage, it would break unrelated tests and make debugging needlessly harder. We need to have tests for regressions in "git diff", but such a test would use "git diff" in earlier parts of the test sequence that _produce_ the output to be compared with expected result. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html