summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-07-25 14:13:35 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-07-25 14:13:35 -0700
commitf2cfb8fcc993b77b0a0420a84fd1a9a48cbe0ab9 (patch)
treec41fd869cc504b59f5c7c65feaea0fe457786344 /t
parentMerge branch 'mh/ref-iterators' (diff)
parentdiff: fix a double off-by-one with --ignore-space-at-eol (diff)
downloadtgif-f2cfb8fcc993b77b0a0420a84fd1a9a48cbe0ab9.tar.xz
Merge branch 'js/ignore-space-at-eol'
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"