t / t7813-grep-icase-iso.shon commit Merge branch 'es/doc-gitsubmodules-markup' (c41b119)
   1#!/bin/sh
   2
   3test_description='grep icase on non-English locales'
   4
   5. ./lib-gettext.sh
   6
   7test_expect_success GETTEXT_ISO_LOCALE 'setup' '
   8        printf "TILRAUN: Halló Heimur!" >file &&
   9        git add file &&
  10        LC_ALL="$is_IS_iso_locale" &&
  11        export LC_ALL
  12'
  13
  14test_expect_success GETTEXT_ISO_LOCALE,PCRE 'grep pcre string' '
  15        git grep --perl-regexp -i "TILRAUN: H.lló Heimur!" &&
  16        git grep --perl-regexp -i "TILRAUN: H.LLÓ HEIMUR!"
  17'
  18
  19test_done