summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/texinfo/makeinfo/tests/accentenc
blob: baf26b6018673c9a92af15087d8c72ad3f5149a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Test encoded accent info output.

: ${srcdir=.}
input=`basename $0`.txi
output=`basename $0`.info

../makeinfo --enable-encoding --no-split -I$srcdir $srcdir/$input
exit_status=$?
if test $exit_status = 0; then
  grep 'ì' $output >/dev/null \
  && grep 'ï' $output >/dev/null \
  && grep '/L' $output >/dev/null
  exit_status=$?
fi

rm -f $output

exit $exit_status