]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4258-am-quoted-cr.sh
Sync with 2.36.3
[thirdparty/git.git] / t / t4258-am-quoted-cr.sh
CommitLineData
59b519ab
ĐTCD
1#!/bin/sh
2
3test_description='test am --quoted-cr=<action>'
4
5. ./test-lib.sh
6
7DATA="$TEST_DIRECTORY/t4258"
8
9test_expect_success 'setup' '
10 test_write_lines one two three >text &&
11 test_commit one text &&
12 test_write_lines one owt three >text &&
13 test_commit two text
14'
15
16test_expect_success 'am warn if quoted-cr is found' '
17 git reset --hard one &&
18 test_must_fail git am "$DATA/mbox" 2>err &&
19 grep "quoted CRLF detected" err
20'
21
22test_expect_success 'am --quoted-cr=strip' '
23 test_might_fail git am --abort &&
24 git reset --hard one &&
25 git am --quoted-cr=strip "$DATA/mbox" &&
26 git diff --exit-code HEAD two
27'
28
6fc53692 29test_expect_success 'am with config mailinfo.quotedCr=strip' '
59b519ab
ĐTCD
30 test_might_fail git am --abort &&
31 git reset --hard one &&
32 test_config mailinfo.quotedCr strip &&
33 git am "$DATA/mbox" &&
34 git diff --exit-code HEAD two
35'
36
37test_done