On 2013-09-03 15:03, Eric Sunshine wrote: > On Tue, Sep 3, 2013 at 1:37 PM, Richard Hansen <rhansen@xxxxxxx> wrote: >> diff --git a/t/t1511-rev-parse-caret.sh b/t/t1511-rev-parse-caret.sh >> index eaefc77..5771cbd 100755 >> --- a/t/t1511-rev-parse-caret.sh >> +++ b/t/t1511-rev-parse-caret.sh >> @@ -54,6 +61,26 @@ test_expect_success 'ref^{tree}' ' >> test_must_fail git rev-parse blob-tag^{tree} >> ' >> >> +test_expect_success 'ref^{tag}' ' >> + echo $BLOB_TAG_SHA1 >expected && >> + git rev-parse --verify blob-tag^{tag} >actual && >> + test_cmp expected actual && >> + echo $TREE_TAG_SHA1 >expected && >> + git rev-parse --verify tree-tag^{tag} >actual && >> + test_cmp expected actual && >> + echo $COMMIT_TAG_SHA1 >expected && >> + git rev-parse --verify commit-tag^{tag} >actual && >> + test_cmp expected actual && >> + echo $TAG_TAG_SHA1 >expected && >> + git rev-parse --verify tag-tag^{tag} >actual && >> + test_cmp expected actual && >> + test_must_fail git rev-parse --verify $BLOB_SHA1^{tag} && >> + test_must_fail git rev-parse --verify $TREE_SHA1^{tag} && >> + test_must_fail git rev-parse --verify $COMMIT_SHA1^{tag} && >> + test_must_fail git rev-parse --verify rev^{tag} && >> + true >> +' > > The unnecessary trailing "&& true" is unusual. Such form is not used > elsewhere in this file, or in any script in the test suite. True. I can take it out, and while I'm at it simplify the test case to what Peff suggested. I'm in the habit of using that idiom because (1) I won't break things if I forget to add/remove '&&' when I add/remove lines in a future commit, and (2) it simplifies conflict resolution if two commits touch the same list of stuff. -Richard -- 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