blob: 98af481f0db3e0075ae54f5531fed95bf61109e1 (
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
|
#! /bin/sh
# Copyright (C) 2009 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
TEXMFCNF=$srcdir/../kpathsea \
OFMFONTS=./$tests \
./ovp2ovf -verbose $srcdir/$tests/specialhex $tests/specialhex $tests/specialhex || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./ofm2opl -verbose $tests/specialhex $tests/specialhex || exit 1
./opl2ofm -verbose $tests/specialhex $tests/xspecialhex || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./ofm2opl -verbose $tests/xspecialhex $tests/xspecialhex || exit 1
diff $tests/specialhex.opl $tests/xspecialhex.opl || exit 1
TEXMFCNF=$srcdir/../kpathsea \
OFMFONTS=.:./$tests \
./ovf2ovp -verbose $tests/specialhex $tests/specialhex $tests/xspecialhex || exit 1
diff $srcdir/$tests/specialhex.ovp $tests/xspecialhex.ovp || exit 1
|