]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4256-am-format-flowed.sh
Sync with Git 2.45.1
[thirdparty/git.git] / t / t4256-am-format-flowed.sh
CommitLineData
3aa4d81f
RS
1#!/bin/sh
2
3test_description='test format=flowed support of git am'
4
b2e5d75d 5TEST_PASSES_SANITIZE_LEAK=true
3aa4d81f
RS
6. ./test-lib.sh
7
8test_expect_success 'setup' '
9 cp "$TEST_DIRECTORY/t4256/1/mailinfo.c.orig" mailinfo.c &&
10 git add mailinfo.c &&
11 git commit -m initial
12'
13
14test_expect_success 'am with format=flowed' '
cb05d6a5 15 git am <"$TEST_DIRECTORY/t4256/1/patch" 2>stderr &&
6789275d 16 test_grep "warning: Patch sent with format=flowed" stderr &&
3aa4d81f
RS
17 test_cmp "$TEST_DIRECTORY/t4256/1/mailinfo.c" mailinfo.c
18'
19
20test_done