You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
test_description='grep icase on non-English locales'
|
|
|
|
|
|
|
|
|
|
. ./lib-gettext.sh
|
|
|
|
|
|
|
|
|
|
test_expect_success GETTEXT_ISO_LOCALE 'setup' '
|
|
|
|
|
printf "TILRAUN: Hall<EFBFBD> Heimur!" >file &&
|
|
|
|
|
git add file &&
|
|
|
|
|
LC_ALL="$is_IS_iso_locale" &&
|
|
|
|
|
export LC_ALL
|
|
|
|
|
'
|
|
|
|
|
|
|
|
|
|
test_expect_success GETTEXT_ISO_LOCALE,PCRE 'grep pcre string' '
|
|
|
|
|
git grep --perl-regexp -i "TILRAUN: H.ll<EFBFBD> Heimur!" &&
|
|
|
|
|
git grep --perl-regexp -i "TILRAUN: H.LL<EFBFBD> HEIMUR!"
|
|
|
|
|
'
|
|
|
|
|
|
|
|
|
|
test_done
|