summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-16 16:47:25 -0700
committerJunio C Hamano <gitster@pobox.com>2011-03-16 16:47:25 -0700
commitbd2700dbdf6551c646bc4d68b6230b63ca6eaea3 (patch)
tree3508a48d15872c36dcd7f8f864c4f5cecd00b5f9 /t
parent5b8aac32fbf5be49e2cdfbdb082fa6bca9548d24 (diff)
parent2485eab55cc0dcab34311ecd0ac52038aa9d9db4 (diff)
downloadgit-bd2700dbdf6551c646bc4d68b6230b63ca6eaea3.tar.gz
Merge branch 'mg/patch-id' into maint
* mg/patch-id: git-patch-id: do not trip over "no newline" markers git-patch-id: test for "no newline" markers
Diffstat (limited to 't')
-rwxr-xr-xt/t4204-patch-id.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/t/t4204-patch-id.sh b/t/t4204-patch-id.sh
index 68e2652814..d2c930de87 100755
--- a/t/t4204-patch-id.sh
+++ b/t/t4204-patch-id.sh
@@ -63,4 +63,40 @@ test_expect_success 'patch-id supports git-format-patch MIME output' '
test_cmp patch-id_master patch-id_same
'
+cat >nonl <<\EOF
+diff --git i/a w/a
+index e69de29..2e65efe 100644
+--- i/a
++++ w/a
+@@ -0,0 +1 @@
++a
+\ No newline at end of file
+diff --git i/b w/b
+index e69de29..6178079 100644
+--- i/b
++++ w/b
+@@ -0,0 +1 @@
++b
+EOF
+
+cat >withnl <<\EOF
+diff --git i/a w/a
+index e69de29..7898192 100644
+--- i/a
++++ w/a
+@@ -0,0 +1 @@
++a
+diff --git i/b w/b
+index e69de29..6178079 100644
+--- i/b
++++ w/b
+@@ -0,0 +1 @@
++b
+EOF
+
+test_expect_success 'patch-id handles no-nl-at-eof markers' '
+ cat nonl | calc_patch_id nonl &&
+ cat withnl | calc_patch_id withnl &&
+ test_cmp patch-id_nonl patch-id_withnl
+'
test_done