summaryrefslogtreecommitdiff
path: root/Build/source/texk/dviout-util/chkdvifont.test
blob: 4d8faf2548ba9af7e0b9adbc20dae0591ab13f08 (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
63
#! /bin/sh -vx
# $Id$
# Copyright (C) 2018 Japanese TeX Development Community <issue@texjp.org>
# You may freely use, modify and/or distribute this file.

testdir=$srcdir/tests

# 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)
diffoptCRLF=
diff --strip-trailing-cr $testdir/oldindep.cfn $testdir/oldindep.cfn \
  && diffoptCRLF=--strip-trailing-cr || echo


## DVI mode

cp $testdir/oldindep.dvi . && \
  ./chkdvifont -c ./oldindep.dvi > xoldindep.cfn && \
  diff $diffoptCRLF $testdir/oldindep.cfn xoldindep.cfn && echo || exit 1


## TFM/JFM mode

./chkdvifont -c $testdir/jis.tfm > xjis.cfn && \
  diff $diffoptCRLF $testdir/jis.cfn xjis.cfn && echo || exit 2

# eufm10.tfm is "AMSTeX 2.0 or newer", exit code should be 4
./chkdvifont -c $testdir/eufm10.tfm > xeufm10.cfn
  if [ $? -ne 4 ]; then exit 3; fi
  sed 's!2.0/2.1!2.0 or newer!' xeufm10.cfn > xeufm10.ed.cfn
  diff $diffoptCRLF $testdir/eufm10.cfn xeufm10.ed.cfn && echo || exit 3


## FONT mode

./chkdvifont -c $testdir/cmr10.pk > xcmr10.cfn && \
  diff $diffoptCRLF $testdir/cmr10.cfn xcmr10.cfn && echo || exit 4

echo M | ./chkdvifont && echo || exit 0

# the following tests will not pass for old version written by SHIMA.
# that version can be distinguished from the new version by
# exit code 250 for usage with stdin M. (the above line did it!)

# check VF format
./chkdvifont -c $testdir/upjisr-h.vf > xupjisr-h.cfn && \
  diff $diffoptCRLF $testdir/upjisr-h.cfn xupjisr-h.cfn && echo || exit 5

# detect new JFM format
./chkdvifont -c $testdir/uparse.tfm > xuparse.cfn && \
  diff $diffoptCRLF $testdir/uparse.cfn xuparse.cfn && echo || exit 6
./chkdvifont -c $testdir/skipjfmp.tfm > xskipjfmp.cfn && \
  diff $diffoptCRLF $testdir/skipjfmp.cfn xskipjfmp.cfn && echo || exit 7
./chkdvifont -c $testdir/upphirakakuw3-h.tfm > xupp3-h.cfn && \
  diff $diffoptCRLF $testdir/upphirakakuw3-h.cfn xupp3-h.cfn && echo || exit 8
./chkdvifont -c $testdir/upphirakakuw6-h.tfm > xupp6-h.cfn && \
  diff $diffoptCRLF $testdir/upphirakakuw6-h.cfn xupp6-h.cfn && echo || exit 9


exit 0