summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/omegafonts/ofonts.test
blob: 187d2338f4e1703cbad5b7f0a839eae7a90d51b2 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2009-2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

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

tests=tests

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

VPL='ofontr1 ofontv4'
OVP='ofontr2 ofontr3 ofontv5 ofontv6'

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

for f in $VPL; do
  $_omfonts -opl2ofm $srcdir/$tests/$f.pl $tests/x$f.tfm || rc=1
  $_omfonts -ofm2opl $tests/x$f.tfm $tests/x$f.pl || rc=2
  diff $srcdir/$tests/$f.pl $tests/x$f.pl || rc=3
done

for f in $OVP; do
  $_omfonts -opl2ofm $srcdir/$tests/$f $tests/x$f || rc=4
  $_omfonts -ofm2opl $tests/x$f $tests/x$f || rc=5
  diff $srcdir/$tests/$f.opl $tests/x$f.opl || rc=6
done

rm -rf $tests/xofontr* $tests/xofontv*

for f in ofontr0; do
  $_omfonts -opl2ofm $srcdir/$tests/$f.pl $tests/x$f.tfm || rc=7
  $_omfonts -ofm2opl $tests/x$f.tfm $tests/x$f.pl || rc=8
  diff $srcdir/$tests/$f.pl $tests/x$f.pl || rc=9
done

for f in $VPL; do
  $_omfonts -ovp2ovf $srcdir/$tests/$f.vpl $tests/x$f.vf $tests/x$f.tfm || rc=10
  $_omfonts -ofm2opl $tests/x$f.tfm $tests/x$f.pl || rc=11
  diff $srcdir/$tests/$f.pl $tests/x$f.pl || rc=12
  $_omfonts -ovf2ovp $tests/x$f.vf $tests/x$f.tfm $tests/x$f.vpl || rc=13
  diff $srcdir/$tests/$f.vpl $tests/x$f.vpl || rc=14
done

for f in $OVP; do
  $_omfonts -ovp2ovf $srcdir/$tests/$f $tests/x$f $tests/x$f || rc=15
  $_omfonts -ofm2opl $tests/x$f $tests/x$f || rc=16
  diff $srcdir/$tests/$f.opl $tests/x$f.opl || rc=17
  $_omfonts -ovf2ovp $tests/x$f $tests/x$f $tests/x$f || rc=18
  diff $srcdir/$tests/$f.ovp $tests/x$f.ovp || rc=19
done

exit $rc