summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/triptrap-sh
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/triptrap-sh
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/triptrap-sh')
-rwxr-xr-xBuild/source/texk/web2c/triptrap-sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/Build/source/texk/web2c/triptrap-sh b/Build/source/texk/web2c/triptrap-sh
index 9e3b9b8ece3..c255f2ee114 100755
--- a/Build/source/texk/web2c/triptrap-sh
+++ b/Build/source/texk/web2c/triptrap-sh
@@ -19,26 +19,26 @@ echo "$me: Running TRIP and TRAP tests and creating diffs."
for file
do
case $file in
- trip.diffs) tst=trip; msg='TRIP test for TeX';;
- mftrap.diffs) tst=trap; msg='TRAP test for Metafont';;
- mptrap.diffs) tst=mplibdir/mptrap; msg='MPTRAP test for MetaPost';;
- etrip.diffs) tst=etexdir/etrip; msg='e-TRIP test for e-TeX';;
- ptrip.diffs) tst=ptexdir/ptrip; msg='TRIP test for pTeX';;
- eptrip.diffs) tst=eptexdir/eptrip; msg='e-TRIP test for e-pTeX';;
- uptrip.diffs) tst=uptexdir/uptrip; msg='TRIP test for upTeX';;
- euptrip.diffs) tst=euptexdir/euptrip; msg='e-TRIP test for e-upTeX';;
+ trip.diffs) tst=triptest; msg='TRIP test for TeX';;
+ mftrap.diffs) tst=mftraptest; msg='TRAP test for Metafont';;
+ mptrap.diffs) tst=mplibdir/mptraptest; msg='MPTRAP test for MetaPost';;
+ etrip.diffs) tst=etexdir/etriptest; msg='e-TRIP test for e-TeX';;
+ ptrip.diffs) tst=ptexdir/ptriptest; msg='TRIP test for pTeX';;
+ eptrip.diffs) tst=eptexdir/eptriptest; msg='e-TRIP test for e-pTeX';;
+ uptrip.diffs) tst=uptexdir/uptriptest; msg='TRIP test for upTeX';;
+ euptrip.diffs) tst=euptexdir/euptriptest; msg='e-TRIP test for e-upTeX';;
*) echo "$me: Bad argument \`$file'"; exit 1;;
esac
echo ">>> Running $msg."
- $MAKE TESTS=$tst.test check-am >$tmp 2>&1 \
- && grep "PASS: $tst\.test" $tmp >/dev/null 2>&1 \
- || { echo "FAIL: $tst.test"; exit 1; }
+ $MAKE TESTS=$tst check-am >$tmp 2>&1 \
+ && grep "PASS: $tst" $tmp >/dev/null 2>&1 \
+ || { echo "FAIL: $tst"; exit 1; }
sed -e "s%$abs_srcdir/%SRCDIR/%" \
-e "s%\.\./%./%" \
$tst.log >$file
- echo "PASS: $tst.test" >>$file
+ echo "PASS: $tst" >>$file
rm -f $tmp
- echo "PASS: $tst.test"
+ echo "PASS: $tst"
done
echo "$me: All done"