mirror of
https://github.com/git/git.git
synced 2026-01-19 15:09:01 +00:00
Merge branch 'as/t7812-missing-redirects-fix'
Test fix. * as/t7812-missing-redirects-fix: t7812: expect failure for grep -i with invalid UTF-8 data t7812: add missing redirects
This commit is contained in:
@@ -70,15 +70,18 @@ test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep ASCII from invalid UT
|
||||
test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep non-ASCII from invalid UTF-8 data' '
|
||||
git grep -h "æ" invalid-0x80 >actual &&
|
||||
test_cmp expected actual &&
|
||||
git grep -h "(*NO_JIT)æ" invalid-0x80 &&
|
||||
git grep -h "(*NO_JIT)æ" invalid-0x80 >actual &&
|
||||
test_cmp expected actual
|
||||
'
|
||||
|
||||
test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep non-ASCII from invalid UTF-8 data with -i' '
|
||||
test_might_fail git grep -hi "Æ" invalid-0x80 >actual &&
|
||||
test_cmp expected actual &&
|
||||
test_must_fail git grep -hi "(*NO_JIT)Æ" invalid-0x80 &&
|
||||
test_cmp expected actual
|
||||
if test -s actual
|
||||
then
|
||||
test_cmp expected actual
|
||||
fi &&
|
||||
test_must_fail git grep -hi "(*NO_JIT)Æ" invalid-0x80 >actual &&
|
||||
! test_cmp expected actual
|
||||
'
|
||||
|
||||
test_done
|
||||
|
||||
Reference in New Issue
Block a user