summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/pmpostdir
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-10-26 22:43:17 +0000
committerKarl Berry <karl@freefriends.org>2014-10-26 22:43:17 +0000
commit7c2c50cc72bba6c1687d1324a786d22802be059f (patch)
tree102a78b3c84ed63976d1e04c29ee54bd924ded84 /Build/source/texk/web2c/pmpostdir
parentc77fb7764ee2938b4df1281a276ab7e05a6e84b2 (diff)
* eptex.src,
* euptex.src: \input [u]ptex.tex, not just [u]ptex; otherwise, if run in the Work/.../web2c directory (as make check does), the [u]ptex binaries will exist and be read in preference to the .tex. Sad but true. * pmpsamp.test, * upmpsamp.test: run e[u]ptex in non-ini mode first, to ensure .fmt files are created, since that is what [u]pmpost is going to do. git-svn-id: svn://tug.org/texlive/trunk@35446 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/pmpostdir')
-rwxr-xr-xBuild/source/texk/web2c/pmpostdir/pmpsamp.test6
-rwxr-xr-xBuild/source/texk/web2c/pmpostdir/upmpsamp.test6
2 files changed, 10 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/pmpostdir/pmpsamp.test b/Build/source/texk/web2c/pmpostdir/pmpsamp.test
index aba36e6dcba..9c55e488477 100755
--- a/Build/source/texk/web2c/pmpostdir/pmpsamp.test
+++ b/Build/source/texk/web2c/pmpostdir/pmpsamp.test
@@ -1,4 +1,4 @@
-#! /bin/sh
+#! /bin/sh -vx
# Copyright (C) 2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
@@ -26,8 +26,12 @@ VFFONTS="$srcdir/$tests;`dirname $vfpath`"
export TEXMFCNF TFMFONTS MPINPUTS TEXFONTMAPS T1FONTS VFFONTS
+# check that we have eptex at all.
eptex -version >/dev/null 2>&1 || exit 77
+# ensure that eptex.fmt exists and can be read.
+eptex \\end >/dev/null 2>&1 || exit 77
+
echo 'input plain;' >pmpsamp.mp
cat "$srcdir/$tests/psample.mp" >>pmpsamp.mp
diff --git a/Build/source/texk/web2c/pmpostdir/upmpsamp.test b/Build/source/texk/web2c/pmpostdir/upmpsamp.test
index f4dfe95e3ae..fcdb285e791 100755
--- a/Build/source/texk/web2c/pmpostdir/upmpsamp.test
+++ b/Build/source/texk/web2c/pmpostdir/upmpsamp.test
@@ -1,4 +1,4 @@
-#! /bin/sh
+#! /bin/sh -vx
# Copyright (C) 2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
@@ -26,8 +26,12 @@ VFFONTS="$srcdir/$tests;`dirname $vfpath`"
export TEXMFCNF TFMFONTS MPINPUTS TEXFONTMAPS T1FONTS VFFONTS
+# check that we have euptex at all.
euptex -version >/dev/null 2>&1 || exit 77
+# ensure that euptex.fmt exists and can be read.
+euptex \\end >/dev/null 2>&1 || exit 77
+
echo 'input plain;' >upmpsamp.mp
cat "$srcdir/$tests/psample.mp" >>upmpsamp.mp