2018-08-26 00:50:32 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test format=flowed support of git am'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
cp "$TEST_DIRECTORY/t4256/1/mailinfo.c.orig" mailinfo.c &&
|
|
|
|
git add mailinfo.c &&
|
|
|
|
git commit -m initial
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'am with format=flowed' '
|
2019-12-11 20:50:02 +03:00
|
|
|
git am <"$TEST_DIRECTORY/t4256/1/patch" 2>stderr &&
|
2018-08-26 00:50:32 +03:00
|
|
|
test_i18ngrep "warning: Patch sent with format=flowed" stderr &&
|
|
|
|
test_cmp "$TEST_DIRECTORY/t4256/1/mailinfo.c" mailinfo.c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|