1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-01 23:07:55 +01:00
git/t/t7813-grep-icase-iso.sh

20 lines
430 B
Bash
Raw Normal View History

#!/bin/sh
test_description='grep icase on non-English locales'
. ./lib-gettext.sh
test_expect_success GETTEXT_ISO_LOCALE 'setup' '
printf "TILRAUN: Hall� Heimur!" >file &&
git add file &&
LC_ALL="$is_IS_iso_locale" &&
export LC_ALL
'
test_expect_success GETTEXT_ISO_LOCALE,LIBPCRE 'grep pcre string' '
git grep --perl-regexp -i "TILRAUN: H.ll� Heimur!" &&
git grep --perl-regexp -i "TILRAUN: H.LL� HEIMUR!"
'
test_done