summaryrefslogtreecommitdiff
path: root/tests/fgrep-infloop
blob: 07a0ce0484fb42635a4adb3de4ac878af010d91f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# This would infloop for grep-2.6.1
. "${srcdir=.}/init.sh"; path_prepend_ ../src

require_en_utf8_locale_
require_timeout_
require_compiled_in_MB_support

encode() { echo "$1" | tr ABC '\357\274\241'; }

fail=0

for LOC in en_US.UTF-8 $LOCALE_FR_UTF8; do
  out=out1-$LOC
  encode ABC \
    | LC_ALL=$LOC timeout 10s grep -F "$(encode BC)" > $out 2>&1
  test $? = 1 || fail=1
  compare /dev/null $out || fail=1
done

Exit $fail