summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-08-08 14:21:35 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-08-08 14:21:35 -0700
commita52fb9b8f3e30b5b5e743cae91c3b2e1f729eb5d (patch)
treee095fccfca6cd9d67981a5672f7f7df5629ad9cf /t
parentMerge branch 'jk/push-scrub-url' into maint (diff)
parentdiff: fix a double off-by-one with --ignore-space-at-eol (diff)
downloadtgif-a52fb9b8f3e30b5b5e743cae91c3b2e1f729eb5d.tar.xz
Merge branch 'js/ignore-space-at-eol' into maint
An age old bug that caused "git diff --ignore-space-at-eol" misbehave has been fixed. * js/ignore-space-at-eol: diff: fix a double off-by-one with --ignore-space-at-eol diff: demonstrate a bug with --patience and --ignore-space-at-eol
Diffstat (limited to 't')
-rwxr-xr-xt/t4033-diff-patience.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t4033-diff-patience.sh b/t/t4033-diff-patience.sh
index 3c9932edf3..113304dc59 100755
--- a/t/t4033-diff-patience.sh
+++ b/t/t4033-diff-patience.sh
@@ -5,6 +5,14 @@ test_description='patience diff algorithm'
. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-diff-alternative.sh
+test_expect_success '--ignore-space-at-eol with a single appended character' '
+ printf "a\nb\nc\n" >pre &&
+ printf "a\nbX\nc\n" >post &&
+ test_must_fail git diff --no-index \
+ --patience --ignore-space-at-eol pre post >diff &&
+ grep "^+.*X" diff
+'
+
test_diff_frobnitz "patience"
test_diff_unique "patience"