diff options
Diffstat (limited to 'Build/source/texk/web2c/omegaware/omfonts.test')
-rwxr-xr-x | Build/source/texk/web2c/omegaware/omfonts.test | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/Build/source/texk/web2c/omegaware/omfonts.test b/Build/source/texk/web2c/omegaware/omfonts.test index 4bf1e48fa4e..38fafef64a2 100755 --- a/Build/source/texk/web2c/omegaware/omfonts.test +++ b/Build/source/texk/web2c/omegaware/omfonts.test @@ -3,32 +3,34 @@ # Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> # You may freely use, modify and/or distribute this file. -test -d tests || mkdir -p tests +tests=omegaware/tests -./pltotf $srcdir/tests/Cherokee tests/Cherokee || exit 1 +test -d $tests || mkdir -p $tests + +./pltotf $srcdir/$tests/Cherokee $tests/Cherokee || exit 1 TEXMFCNF=$srcdir/../kpathsea \ - ./tftopl tests/Cherokee tests/xCherokee || exit 1 + ./tftopl $tests/Cherokee $tests/xCherokee || exit 1 -diff $srcdir/tests/Cherokee.pl tests/xCherokee.pl || exit 1 +diff $srcdir/$tests/Cherokee.pl $tests/xCherokee.pl || exit 1 TEXMFCNF=$srcdir/../kpathsea \ - OFMFONTS=./tests \ - ./ovp2ovf -verbose $srcdir/tests/OCherokee tests/OCherokee tests/OCherokee || exit 1 + OFMFONTS=./$tests \ + ./ovp2ovf -verbose $srcdir/$tests/OCherokee $tests/OCherokee $tests/OCherokee || exit 1 TEXMFCNF=$srcdir/../kpathsea \ - ./ofm2opl -verbose tests/OCherokee tests/OCherokee || exit 1 + ./ofm2opl -verbose $tests/OCherokee $tests/OCherokee || exit 1 -./opl2ofm -verbose tests/OCherokee tests/xOCherokee || exit 1 +./opl2ofm -verbose $tests/OCherokee $tests/xOCherokee || exit 1 TEXMFCNF=$srcdir/../kpathsea \ - ./ofm2opl -verbose tests/xOCherokee tests/xOCherokee || exit 1 + ./ofm2opl -verbose $tests/xOCherokee $tests/xOCherokee || exit 1 -diff tests/OCherokee.opl tests/xOCherokee.opl || exit 1 +diff $tests/OCherokee.opl $tests/xOCherokee.opl || exit 1 TEXMFCNF=$srcdir/../kpathsea \ - OFMFONTS=.:./tests \ - ./ovf2ovp -verbose tests/OCherokee tests/OCherokee tests/xOCherokee || exit 1 + OFMFONTS=.:./$tests \ + ./ovf2ovp -verbose $tests/OCherokee $tests/OCherokee $tests/xOCherokee || exit 1 -diff $srcdir/tests/OCherokee.ovp tests/xOCherokee.ovp || exit 1 +diff $srcdir/$tests/OCherokee.ovp $tests/xOCherokee.ovp || exit 1 |