summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/check.test
blob: 9526c31de8bc14871cb151581e8a0715e620ea45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2014, 2015 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

BinDir=${BinDir:-.}
ExeExt=${ExeExt:-}
_omfonts=$BinDir/omfonts$ExeExt

# pre-generated test results in the repository are stored in LF
# but the output might be written in CRLF on some platform.
# if 'diff --strip-trailing-cr' is available, exploit it.
# (useful for tests on win32 binaries run on MSYS shell)
DIFF="diff"
$DIFF --strip-trailing-cr $0 $0 \
  && DIFF="diff --strip-trailing-cr" || echo

tests=tests

test -d $tests || mkdir -p $tests
rc=0

TEXMFCNF=$srcdir/../../kpathsea
OFMFONTS=".;./$tests"
export TEXMFCNF OFMFONTS

echo && echo "*** ofm2opl check xcheck"
$_omfonts -ofm2opl $srcdir/$tests/check $tests/xcheck || rc=1

echo && echo "*** diff check.opl xcheck.opl"
diff $srcdir/$tests/check.opl $tests/xcheck.opl || rc=2

echo && echo "*** opl2ofm xcheck xchecked"
$_omfonts -opl2ofm $tests/xcheck $tests/xchecked || rc=3

echo && echo "*** ofm2opl xchecked stdout (xchecked.opl)"
$_omfonts -ofm2opl $tests/xchecked >$tests/xchecked.opl || rc=4

echo && echo "*** diff checked.opl xchecked.opl"
$DIFF $srcdir/$tests/checked.opl $tests/xchecked.opl || rc=5

exit $rc