]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4256-am-format-flowed.sh
path.c: don't call the match function without value in trie_find()
[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
5. ./test-lib.sh
6
7test_expect_success 'setup' '
8 cp "$TEST_DIRECTORY/t4256/1/mailinfo.c.orig" mailinfo.c &&
9 git add mailinfo.c &&
10 git commit -m initial
11'
12
13test_expect_success 'am with format=flowed' '
14 git am <"$TEST_DIRECTORY/t4256/1/patch" >stdout 2>stderr &&
15 test_i18ngrep "warning: Patch sent with format=flowed" stderr &&
16 test_cmp "$TEST_DIRECTORY/t4256/1/mailinfo.c" mailinfo.c
17'
18
19test_done