On Sun, Feb 15, 2009 at 12:27:40AM -0500, Jeff King wrote: > On Sat, Feb 14, 2009 at 05:30:30AM -0500, Jay Soffian wrote: > > > +test_expect_success 'set-head --auto fails w/multiple HEADs' ' > > + (cd test && > > + test_must_fail git remote set-head --auto two >& output && > > + test_cmp expect output) > > I missed it before, but there is a typo in this test (>&) that causes it > to barf. Actually, it should be "> output 2>&1" to pick up the error message we are expecting. Squashable diff is below. The test script actually passes for me now. --- diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh index 49f99e9..f0be105 100755 --- a/t/t5505-remote.sh +++ b/t/t5505-remote.sh @@ -231,7 +231,7 @@ EOF test_expect_success 'set-head --auto fails w/multiple HEADs' ' (cd test && - test_must_fail git remote set-head --auto two >& output && + test_must_fail git remote set-head --auto two > output 2>&1 && test_cmp expect output) ' -- 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