#! /bin/sh # Copyright (C) 2013 Peter Breitenlohner # You may freely use, modify and/or distribute this file. test -d uptests || mkdir -p uptests # Test inputs testdir=$srcdir/uptexdir/tests # Testing pPLtoTF/pTFtoPL for min10 (yoko=horiz) and tmin10 (tate=vert). for font in min10 tmin10; do ./uppltotf -verbose $testdir/$font.pl uptests/x$font.tfm && \ cmp $testdir/$font.tfm uptests/x$font.tfm && echo || exit 1 TEXMFCNF=$srcdir/../kpathsea \ ./uptftopl -charcode-format octal -verbose $testdir/$font.tfm uptests/x$font.pl && \ diff $testdir/$font.pl uptests/x$font.pl && echo || exit 1 done