Johannes Schindelin schrieb: > On Fri, 6 Feb 2009, Michael J Gruber wrote: >> +test_expect_success 'handle empty notes gracefully' ' >> git notes show || test 1 = $? > > Completely forgot to mention that I think you want to use test_must_fail > here. Wouldn't work. We want to differentiate between different exit codes. But after test_must_fail the exit code is gone. In this simple case this should work: git notes show; test 1 = $? -- Hannes -- 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