summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/ptexdir/ptrip.test
blob: 1ae536758511ae71646b2110b12e9e9af643a259 (plain)
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
#! /bin/sh

# Copyright (C) 2010, 2011 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

testdir=$srcdir/triptrap
ptestdir=$srcdir/ptexdir/ptrip

TEXMFCNF=$ptestdir; export TEXMFCNF

dvitype_args="-output-level=2 -dpi=72.27 -page-start='*.*.*.*.*.*.*.*.*.*'"

echo ">>> Running TRIP test for pTeX." >&2
echo ">>> See $ptestdir/ptrip.diffs for example of acceptable diffs." >&2

rm -f trip.tfm trip.pl trip.tex trip.fmt trip.dvi \
  ptripin.fot ptripin.log ptrip.fot ptrip.log ptrip.typ  \
  tripos.tex 8terminal.tex
rm -rf tfm

# pTeX outputs direction of boxes.
P_SED1='s/, yoko direction//;s/yoko direction, //'
P_SED2='s/yoko(math) direction, //'

is_OK=:

set -x

echo "*** TRIP test for pTeX ***."

./pltotf $testdir/trip.pl trip.tfm || exit 1

./tftopl ./trip.tfm trip.pl || exit 1

diff $testdir/trip.pl trip.pl || is_OK=false

# get same filename in log
$LN_S $testdir/trip.tex .

rm -f trip.log
./ptex --progname=pinitex --ini <$testdir/trip1.in >ptripin.fot
sed "$P_SED1" trip.log >  ptripin.log || exit 1
diff $testdir/tripin.log ptripin.log

# May as well test non-ini second time through.
rm -f trip.log
./ptex --progname=ptex <$testdir/trip2.in >ptrip.fot
sed "$P_SED1;$P_SED2" trip.log > ptrip.log
diff $testdir/trip.fot ptrip.fot

# We use $DIFF instead of `diff' only for those files where there
# might actually be legitimate numerical differences.
$DIFF $DIFFFLAGS $testdir/trip.log ptrip.log 

eval ./dvitype $dvitype_args trip.dvi >ptrip.typ || exit 1
$DIFF $DIFFFLAGS $testdir/trip.typ ptrip.typ

$is_OK || {
  echo ">>> There were some errors." >&2
  exit 1
}