From: Nate Avers Date: Mon, 23 Nov 2020 03:23:42 +0000 (-0500) Subject: t3301: test proper exit response to no-value notes.displayRef. X-Git-Tag: v2.30.0-rc0~43^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45fef1599af19404a7d0d80a985b303d665ef4a3;p=thirdparty%2Fgit.git t3301: test proper exit response to no-value notes.displayRef. Signed-off-by: Nate Avers Signed-off-by: Junio C Hamano --- diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index d3fa298c6a..d3694fad8a 100755 --- a/t/t3301-notes.sh +++ b/t/t3301-notes.sh @@ -653,6 +653,11 @@ test_expect_success 'notes.displayRef respects order' ' test_cmp expect-both-reversed actual ' +test_expect_success 'notes.displayRef with no value handled gracefully' ' + test_must_fail git -c notes.displayRef log -0 --notes && + test_must_fail git -c notes.displayRef diff-tree --notes HEAD +' + test_expect_success 'GIT_NOTES_DISPLAY_REF works' ' GIT_NOTES_DISPLAY_REF=refs/notes/commits:refs/notes/other \ git log -2 >actual &&