summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/uptexdir/gkhuge.test
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/texk/web2c/uptexdir/gkhuge.test
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/uptexdir/gkhuge.test')
-rwxr-xr-xBuild/source/texk/web2c/uptexdir/gkhuge.test38
1 files changed, 0 insertions, 38 deletions
diff --git a/Build/source/texk/web2c/uptexdir/gkhuge.test b/Build/source/texk/web2c/uptexdir/gkhuge.test
deleted file mode 100755
index d85c8d238dd..00000000000
--- a/Build/source/texk/web2c/uptexdir/gkhuge.test
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /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
-