summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/uptexdir/gkhuge.test
blob: d85c8d238ddaf7a65c627ae71cc56cbfbe1e5aa3 (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
#! /bin/sh -vx
# $Id$
# Copyright 2018 Karl Berry <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

test -d uptests || mkdir -p uptests

TEXMFCNF=$srcdir/../kpathsea
export TEXMFCNF

# Test inputs
testdir=$srcdir/uptexdir/tests

# Testing upPLtoTF/upTFtoPL for huge GLUEKERN table
# with rearrangement.
for font in gkhugeok; do

  # This test is constructed as a cycle, since JPL source
  # of gkhugeok.tfm is so large.
  ./uptftopl -verbose $testdir/$font.tfm uptests/y$font.pl && \
  ./uppltotf -verbose uptests/y$font.pl uptests/y$font.tfm && \
  cmp $testdir/$font.tfm uptests/y$font.tfm && echo || exit 1

done

for font in gkhugeng; do

  # Fifth byte of the JFM (= lf; length of the whole file)
  # must not exceed 2^{15}-1; check that and exit with an
  # error message, instead of trying to allocate too much.
  # The invalid gkhugeng.tfm was erroneously created before
  # web2c/pltotf.ch change 2017-09-10, due to overflow
  ./uptftopl $testdir/$font.tfm uptests/y$font.pl \
    2>uptests/y$font.err && exit 1 || echo
  diff $testdir/$font.err uptests/y$font.err && echo || exit 1

done