Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge git://git.kernel.org/pub/scm/gitk/gitk
[gitweb.git]
/
t
/
t4104-apply-boundary.sh
diff --git
a/t/t4104-apply-boundary.sh
b/t/t4104-apply-boundary.sh
index 64f34e329867cbef3c122c96a63cfd844b0953af..43943ab8ca181edbdcc6a68d208cf584b5cda86d 100755
(executable)
--- a/
t/t4104-apply-boundary.sh
+++ b/
t/t4104-apply-boundary.sh
@@
-112,4
+112,17
@@
do
'
done
+test_expect_success 'two lines' '
+
+ >file &&
+ git add file &&
+ echo aaa >file &&
+ git diff >patch &&
+ git add file &&
+ echo bbb >file &&
+ git add file &&
+ test_must_fail git apply --check patch
+
+'
+
test_done