blob: ee783e1642439174ab465c797fe29ea818254a19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
test -d tests || mkdir -p tests
TEXMFCNF=$srcdir/../kpathsea \
./dvitomp $srcdir/tests/story.dvi tests/xstory.mpx ## || exit 1
## fails with: ./dvitomp: fatal: tfm file `cmbx10' not found.
TEXMFCNF=$srcdir/../kpathsea TFMFONTS=$srcdir/tests VFFONTS=$srcdir/tests: \
./dvitomp $srcdir/tests/ptmr && \
mv ptmr.mpx tests/xptmr.mpx || exit 1
|