blob: 6e47ea79192c147a606ade72d758527bea5098df (
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
# Copyright (C) 2009-2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
tests=omegaware/tests
test -d $tests || mkdir -p $tests
VPL='ofontr1 ofontv4'
OVP='ofontr2 ofontr3 ofontv5 ofontv6'
for f in $VPL; do
./wopl2ofm -verbose $srcdir/$tests/$f.pl $tests/x$f.tfm || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/x$f.tfm $tests/x$f.pl || exit 1
diff $srcdir/$tests/$f.pl $tests/x$f.pl || exit 1
done
for f in $OVP; do
./wopl2ofm -verbose $srcdir/$tests/$f $tests/x$f || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/x$f $tests/x$f || exit 1
diff $srcdir/$tests/$f.opl $tests/x$f.opl || exit 1
done
rm -rf $tests/xofontr* $tests/xofontv*
for f in ofontr0; do
./wopl2ofm -verbose $srcdir/$tests/$f.pl $tests/x$f.tfm || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/x$f.tfm $tests/x$f.pl || exit 1
diff $srcdir/$tests/$f.pl $tests/x$f.pl || exit 1
done
for f in $VPL; do
./wovp2ovf -verbose $srcdir/$tests/$f.vpl $tests/x$f.vf $tests/x$f.tfm || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/x$f.tfm $tests/x$f.pl || exit 1
diff $srcdir/$tests/$f.pl $tests/x$f.pl || exit 1
TEXMFCNF=$srcdir/../kpathsea \
OFMFONTS=.:$srcdir/$tests \
./wovf2ovp -verbose $tests/x$f.vf $tests/x$f.tfm $tests/x$f.vpl || exit 1
diff $srcdir/$tests/$f.vpl $tests/x$f.vpl || exit 1
done
for f in $OVP; do
./wovp2ovf -verbose $srcdir/$tests/$f $tests/x$f $tests/x$f || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/x$f $tests/x$f || exit 1
diff $srcdir/$tests/$f.opl $tests/x$f.opl || exit 1
TEXMFCNF=$srcdir/../kpathsea \
OFMFONTS=.:$srcdir/$tests \
./wovf2ovp -verbose $tests/x$f $tests/x$f $tests/x$f || exit 1
diff $srcdir/$tests/$f.ovp $tests/x$f.ovp || exit 1
done
exit 0
|