Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Avers <nate@roosteregg.cc>2020-11-23 06:23:42 +0300
committerJunio C Hamano <gitster@pobox.com>2020-11-23 21:42:25 +0300
commit45fef1599af19404a7d0d80a985b303d665ef4a3 (patch)
tree209b4a18049e66e717bec2c169b423c7de45e56f /t/t3301-notes.sh
parentc3eb95a0d759d80d53ccb396627c400cd3db6e6d (diff)
t3301: test proper exit response to no-value notes.displayRef.
Signed-off-by: Nate Avers <nate@roosteregg.cc> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3301-notes.sh')
-rwxr-xr-xt/t3301-notes.sh5
1 files changed, 5 insertions, 0 deletions
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 &&