File: test-tex.sh

package info (click to toggle)
enca 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,948 kB
  • sloc: ansic: 10,297; sh: 5,858; xml: 2,132; makefile: 700; perl: 261
file content (21 lines) | stat: -rwxr-xr-x 596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
# Purpose: test whether TeX decoding works.
. $srcdir/setup.sh
# Skipping the test on MSYS@ due to mkstemp failure.
if [[ -v MSYSTEM ]]; then
  E77=1
else
  if $ENCA --list converters | grep '^librecode$' >/dev/null; then
    TEST_TEXT=$srcdir/cs-s.tex
    OPTS="-L cs -C recode"
    # File
    cp $TEST_TEXT $TESTNAME.actual
    $ENCA $OPTS -x UTF-8 $TESTNAME.actual || DIE=1
    $ENCA -L none $TESTNAME.actual | grep UTF-8 >/dev/null || DIE=1
    $ENCA $OPTS -x TEX $TESTNAME.actual || DIE=1
    diff $TEST_TEXT $TESTNAME.actual || DIE=1
  else
    E77=1
  fi
fi
. $srcdir/finish.sh