summaryrefslogtreecommitdiff
path: root/dviware/dvidvi/dvidvi.test
blob: 9719ef72d47aadae7972ce282890f13d137e31aa (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
#! /bin/sh -vx
# $Id: dvidvi.test 67877 2023-08-11 11:46:10Z takuji $
# Copyright 2017-2021 Karl Berry <tex-live@tug.org>
# Copyright 2011 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

BinDir=${BinDir:-.}
ExeExt=${ExeExt:-}
_dvidvi=$BinDir/dvidvi$ExeExt

# pre-generated test results in the repository are stored in LF
# but the output might be written in CRLF on some platform.
# if 'diff --strip-trailing-cr' is available, exploit it.
# (useful for tests on win32 binaries run on MSYS shell)
DIFF="diff"
$DIFF --strip-trailing-cr $0 $0 \
  && DIFF="diff --strip-trailing-cr" || echo


rm -rf play*
cp $srcdir/tests/play.dvi .
$_dvidvi -f 5 -l @25 -m'4:-3,0(6,0)' play playout 2>playout.2
#
# Eliminate version number for the comparison.
grep -v '^This is dvidvi' playout.2 \
| $DIFF - $srcdir/tests/playout.2 \
|| exit 1

rm -rf play*
cp $srcdir/tests/playtate.dvi .
$_dvidvi -f 5 -l @25 -m'4:-3,0(6,0)' playtate playout 2>playout.3
#
grep -v '^This is dvidvi' playout.3 \
| $DIFF - $srcdir/tests/playout.3 \
|| exit 2

exit 0