blob: a0af94bbf0d96a0fccf10a47e6002e31dd97e58c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /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
./wopl2ofm -verbose $srcdir/$tests/repeat $tests/xrepeated || exit 1
TEXMFCNF=$srcdir/../kpathsea \
./wofm2opl -verbose $tests/xrepeated $tests/xrepeated || exit 1
diff $srcdir/$tests/repeated.opl $tests/xrepeated.opl || exit 1
|