summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mftraptest
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-01-17 08:29:40 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-01-17 08:29:40 +0000
commit46bf89c67558df91d6a66b1fbb084a77304a802f (patch)
treef35bc688791d2735c3f7127b71d8ddcd5fe67a3e /Build/source/texk/web2c/mftraptest
parentcf2d23360ee1162fe86b0d284eae8e67620e309d (diff)
TeX & Co: Rename trip.test => triptest, trap.test => mftraptest, etc
git-svn-id: svn://tug.org/texlive/trunk@32698 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/mftraptest')
-rwxr-xr-xBuild/source/texk/web2c/mftraptest41
1 files changed, 41 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mftraptest b/Build/source/texk/web2c/mftraptest
new file mode 100755
index 00000000000..5b1498f9dbb
--- /dev/null
+++ b/Build/source/texk/web2c/mftraptest
@@ -0,0 +1,41 @@
+#! /bin/sh
+
+# Copyright (C) 2009-2013 Peter Breitenlohner <tex-live@tug.org>
+# You may freely use, modify and/or distribute this file.
+
+testdir=$abs_srcdir/triptrap
+
+TEXMFCNF=$testdir; export TEXMFCNF
+
+rm -rf trapdir
+mkdir trapdir
+cd trapdir
+
+dvitype_args="-output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*'"
+
+echo ">>> Running TRAP test for Metafont." >&2
+echo ">>> See $testdir/mftrap.diffs for example of acceptable diffs." >&2
+
+set -x
+
+# get same filename in log
+$LN_S $testdir/trap.mf .
+
+../mf --progname=inimf <$testdir/mftrap1.in >mftrapin.fot
+mv trap.log mftrapin.log || exit 1
+diff $testdir/mftrapin.log mftrapin.log
+
+../mf --progname=inimf <$testdir/mftrap2.in >mftrap.fot
+mv trap.log mftrap.log || exit 1
+mv trap.tfm mftrap.tfm || exit 1
+diff $testdir/mftrap.fot mftrap.fot
+diff $testdir/mftrap.log mftrap.log
+
+../tftopl ./mftrap.tfm mftrap.pl || exit 1
+diff $testdir/mftrap.pl mftrap.pl
+
+../gftype -m -i ./trap.72270gf >trap.typ || exit 1
+diff $testdir/trap.typ trap.typ
+
+exit 0
+