summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/trap.test
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-05-12 08:48:35 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-05-12 08:48:35 +0000
commit1dd6d4130274dfb8367e9c43ac53b6d73f7a6e88 (patch)
treee9f0d9329c5228c412b819cac2dd6da8b7bdc082 /Build/source/texk/web2c/trap.test
parent29bfa42432b9c0eba182531593aff48f20d46e95 (diff)
build system: add TRAP test for Metafont
git-svn-id: svn://tug.org/texlive/trunk@13051 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/trap.test')
-rwxr-xr-xBuild/source/texk/web2c/trap.test39
1 files changed, 39 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/trap.test b/Build/source/texk/web2c/trap.test
new file mode 100755
index 00000000000..2c496189a26
--- /dev/null
+++ b/Build/source/texk/web2c/trap.test
@@ -0,0 +1,39 @@
+#! /bin/sh
+
+testdir=$srcdir/triptrap
+
+TEXMFCNF=$testdir; export TEXMFCNF
+
+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
+
+rm -f trap.mf trap.base
+rm -f mftrapin.fot mftrapin.log
+rm -f mftrap.fot mftrap.log mftrap.tfm
+rm -f mftrap.pl trap.72270gf trap.typ
+
+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
+