]> git.pld-linux.org Git - packages/git-core.git/blob - git-core-test-grep.patch
20e3b1d1da96f55a3ab359d2bd6a6f5a8be426cd
[packages/git-core.git] / git-core-test-grep.patch
1 --- t/t8005-blame-i18n.sh.orig  2016-02-06 17:47:21.108000446 +0100
2 +++ t/t8005-blame-i18n.sh       2016-02-06 17:48:04.231487635 +0100
3 @@ -36,7 +36,7 @@
4  test_expect_success !MINGW \
5         'blame respects i18n.commitencoding' '
6         git blame --incremental file | \
7 -               egrep "^(author|summary) " > actual &&
8 +               egrep -a "^(author|summary) " > actual &&
9         test_cmp actual expected
10  '
11  
12 @@ -53,7 +53,7 @@
13         'blame respects i18n.logoutputencoding' '
14         git config i18n.logoutputencoding eucJP &&
15         git blame --incremental file | \
16 -               egrep "^(author|summary) " > actual &&
17 +               egrep -a "^(author|summary) " > actual &&
18         test_cmp actual expected
19  '
20  
21 @@ -69,7 +69,7 @@
22  test_expect_success !MINGW \
23         'blame respects --encoding=UTF-8' '
24         git blame --incremental --encoding=UTF-8 file | \
25 -               egrep "^(author|summary) " > actual &&
26 +               egrep -a "^(author|summary) " > actual &&
27         test_cmp actual expected
28  '
29  
30 @@ -85,7 +85,7 @@
31  test_expect_success !MINGW \
32         'blame respects --encoding=none' '
33         git blame --incremental --encoding=none file | \
34 -               egrep "^(author|summary) " > actual &&
35 +               egrep -a "^(author|summary) " > actual &&
36         test_cmp actual expected
37  '
38  
This page took 0.019233 seconds and 2 git commands to generate.