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