1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#! /bin/sh -vx
# $Id$
# Copyright 2017-2021 Karl Berry <tex-live@tug.org>
# Copyright 2009-2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE
testdir=$abs_srcdir/triptrap
TEXMFCNF=$testdir; export TEXMFCNF
rm -rf trapdir
mkdir trapdir
cd trapdir
mkdir a b
# See triptrap/README for explanation of why we believe these diffs are ok,
# notably including the capsule numbers.
# TeX Live generic
cat >filter <<-\_EOF
s,^\*\*(trap\.mf,** \&trap trap \
(trap.mf,
s/ (TeX Live 20[^)]*)//
s/base=trap [^)][^)]*)/base=trap)/
s/) [0-9A-Z: ]*$/)/
s/usage [1-9][0-9&]* ([1-9][0-9&]* still/usage XX\&XX (YYY\&YYYYY still/
s/[1-9][0-9]* strings of total length [1-9][0-9]*/XXXX strings of total length YYYYY/
s/[1-9][0-9]* strings out of [1-9].*/XX strings out of YYY/
s/[1-9][0-9]* string characters out of [1-9].*/XXXX string characters out of YYYYY/
s/tokens out of [1-9][0-9]*/tokens out of YYYY/
s/out of [1-9][0-9]*i,[0-9nrpb,]*/out of YYi,YYYn,YYYr,YYYp,YYYb/
s/out of [1-9][0-9]*w,[0-9hdilkep,]*)/out of YYYw,YYh,YYd,YYi,YYYYl,YYYk,YYYe,YYp)/
s/METAFONT output ....\...\...:..../METAFONT output YYYY.MM.DD:hhmm/
_EOF
# Capsule numbers
cat >>filter <<-\_EOF
s/ %CA$/ %/
s/^PSULE1675/CAPSULE1172/
s/%CAPSULE[1-9][0-9]*/%CAPSULEnnnn/g
_EOF
echo ">>> Running TRAP test for Metafont." >&2
echo ">>> See $testdir/mftrap.diffs for example of acceptable diffs." >&2
is_OK=:
set -x
# get same filename in log
rm -f trap.mf
$LN_S $testdir/trap.mf . || exit 1
rm -f trap.base
../mf --progname=inimf <$testdir/mftrap1.in >mftrapin.fot
if test ! -s trap.base; then
echo "*** trap.base not created by mftrap1.in, investigate!" >&2
exit 1
fi
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 || is_OK=false
../gftype -m -i ./trap.72270gf >trap.typ || exit 1
diff $testdir/trap.typ trap.typ
for f in mftrapin.log mftrap.fot mftrap.log trap.typ; do
sed $testdir/$f -f filter >a/$f
sed $f -f filter >b/$f
diff a/$f b/$f || is_OK=false
done
$is_OK && {
echo ">>> All differences are acceptable." >&2
} || {
echo "*** Error(s) found in mf trap test, investigate!" >&2
exit 1
}
|