diff options
Diffstat (limited to 'Build/source/texk/web2c/omegafonts/omfonts.test')
-rwxr-xr-x | Build/source/texk/web2c/omegafonts/omfonts.test | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/omegafonts/omfonts.test b/Build/source/texk/web2c/omegafonts/omfonts.test new file mode 100755 index 00000000000..7e5169fa769 --- /dev/null +++ b/Build/source/texk/web2c/omegafonts/omfonts.test @@ -0,0 +1,34 @@ +#! /bin/sh + +# 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 + +../pltotf $srcdir/tests/Cherokee tests/Cherokee || exit 1 + +TEXMFCNF=$srcdir/../../kpathsea \ + ../tftopl tests/Cherokee tests/xCherokee || exit 1 + +diff $srcdir/tests/Cherokee.pl tests/xCherokee.pl || exit 1 + +TEXMFCNF=$srcdir/../../kpathsea \ + OFMFONTS=tests \ + ./omfonts -ovp2ovf -verbose $srcdir/tests/OCherokee tests/OCherokee tests/OCherokee || exit 1 + +TEXMFCNF=$srcdir/../../kpathsea \ + ./omfonts -ofm2opl -verbose tests/OCherokee tests/OCherokee || exit 1 + +./omfonts -opl2ofm -verbose tests/OCherokee tests/xOCherokee || exit 1 + +TEXMFCNF=$srcdir/../../kpathsea \ + ./omfonts -ofm2opl -verbose tests/xOCherokee tests/xOCherokee || exit 1 + +diff tests/OCherokee.opl tests/xOCherokee.opl || exit 1 + +TEXMFCNF=$srcdir/../../kpathsea \ + OFMFONTS=.:./tests \ + ./omfonts -ovf2ovp -verbose tests/OCherokee tests/OCherokee tests/xOCherokee || exit 1 + +diff $srcdir/tests/OCherokee.ovp tests/xOCherokee.ovp || exit 1 + |