On 2014-09-21 05.00, Johan Herland wrote: [] > diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh > index cfd67ff..a6c399b 100755 > --- a/t/t3301-notes.sh > +++ b/t/t3301-notes.sh > @@ -1239,4 +1239,23 @@ test_expect_success 'git notes get-ref (--ref)' ' > test "$(GIT_NOTES_REF=refs/notes/bar git notes --ref=baz get-ref)" = "refs/notes/baz" > ' > > +cat > expect << EOF Git style for shell scripts: Plase put no space between < or > or >> and the file name: cat >expect <<EOF > +commit 085b0d1309902c3148feb5a136515bdb9a1cd614 > +Author: A U Thor <author@xxxxxxxxxxx> > +Date: Thu Apr 7 15:28:13 2005 -0700 > + > + 16th > + > +Notes (foo): > +EOF > + > +test_expect_success 'can create empty note with "git notes add -C $empty_blob"' ' > + test_commit 16th && > + blob=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 && > + git notes add -C $blob && > + git log -1 > actual && git log -1 >actual && > + test_cmp expect actual && > + test "$(git notes list HEAD)" = "$blob" > +' > + > test_done > -- 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