blob: 5e8aeeb38eef5df95fbc9362ec7409c2ff3796c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
# Copyright (C) 2009-2015 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
test -d tests || mkdir -p tests
./pltotf -help || exit 1
./pltotf -version || exit 1
./pltotf -verbose $srcdir/tests/badpl && exit 1
./pltotf -verbose $srcdir/tests/cmr10 tests/xcmr10 || exit 1
cmp $srcdir/tests/cmr10.tfm tests/xcmr10.tfm || exit 1
|