diff options
author | Karl Berry <karl@freefriends.org> | 2014-10-26 22:43:17 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-10-26 22:43:17 +0000 |
commit | 7c2c50cc72bba6c1687d1324a786d22802be059f (patch) | |
tree | 102a78b3c84ed63976d1e04c29ee54bd924ded84 /Build | |
parent | c77fb7764ee2938b4df1281a276ab7e05a6e84b2 (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')
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 6 | ||||
-rwxr-xr-x | Build/source/texk/web2c/pmpostdir/pmpsamp.test | 6 | ||||
-rwxr-xr-x | Build/source/texk/web2c/pmpostdir/upmpsamp.test | 6 |
3 files changed, 16 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 822cb9a225c..76c245e5c73 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,9 @@ +2014-10-26 Karl Berry <karl@tug.org> + + * pmpostdir/pmpsamp.test, + * pmpostdir/upmpsamp.test: check that e[u]ptex can read their .fmt + files, since that is what [u]pmpost is going to do. + 2014-09-25 Peter Breitenlohner <peb@mppmu.mpg.de> * w2c/config.h: Bug fix: integer64 must always be a 64bit type, 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 |