summaryrefslogtreecommitdiff
path: root/t/t4014-format-patch.sh
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2015-12-15 01:52:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-12-15 18:03:56 (GMT)
commit06dfc9ebaa154d5074b7afadc2f792a80fba7d0c (patch)
tree1d50aa5765cf013b5f957583714120c28171ff20 /t/t4014-format-patch.sh
parent3a30aa17879b08f96262abb9a22c7bbe8f56e4c9 (diff)
downloadgit-06dfc9ebaa154d5074b7afadc2f792a80fba7d0c.zip
git-06dfc9ebaa154d5074b7afadc2f792a80fba7d0c.tar.gz
git-06dfc9ebaa154d5074b7afadc2f792a80fba7d0c.tar.bz2
format-patch: check that header line has expected format
The format of the "From " header line is very specific to allow utilities to detect Git-style patches. Add a test that the patches created are in the expected format. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4014-format-patch.sh')
-rwxr-xr-xt/t4014-format-patch.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index 2737ca6..646c475 100755
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
@@ -1438,4 +1438,11 @@ test_expect_success 'format-patch --zero-commit' '
test_cmp expect actual
'
+test_expect_success 'From line has expected format' '
+ git format-patch --stdout v2..v1 >patch2 &&
+ grep "^From " patch2 >from &&
+ grep "^From $_x40 Mon Sep 17 00:00:00 2001$" patch2 >filtered &&
+ test_cmp from filtered
+'
+
test_done