]> granicus.if.org Git - git/commitdiff
format-patch: check that header line has expected format
authorbrian m. carlson <sandals@crustytoothpaste.net>
Tue, 15 Dec 2015 01:52:05 +0000 (01:52 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 15 Dec 2015 18:03:56 +0000 (10:03 -0800)
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>
t/t4014-format-patch.sh

index 2737ca63464193d79776790e14c1a215a0bca7ed..646c4750ec6d3003379da34ee29f247d45cf5b57 100755 (executable)
@@ -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