summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/uptexdir/yokotate.test
blob: 87f32eb1ea6334e0f4c512235881077456903bef (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
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2013 Peter Breitenlohner <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 umin10 (yoko=horiz) and utmin10 (tate=vert).
for font in umin10 utmin10; do

  ./uppltotf -verbose $testdir/$font.pl uptests/x$font.tfm && \
    cmp $testdir/$font.tfm uptests/x$font.tfm && echo || exit 1

  ./uptftopl -charcode-format octal -verbose $testdir/$font.tfm uptests/x$font.pl && \
    diff $testdir/$font.pl uptests/x$font.pl && echo || exit 2

done


# Test inputs
testdir=$srcdir/ptexdir/tests

# Testing pPLtoTF/pTFtoPL compatible mode for character range & encoding.
for font in chcode; do

  ./uppltotf -kanji=utf8 $testdir/$font.pl uptests/x$font.tfm && \
    cmp $testdir/$font.tfm uptests/x$font.tfm && echo || exit 3

  ./uptftopl -kanji=utf8 -charcode-format octal $testdir/$font.tfm uptests/x$font.pl && \
    diff $testdir/$font.pl uptests/x$font.pl && echo || exit 4

for enc in utf8 euc sjis jis; do

  ./uppltotf -kanji=$enc $testdir/$font-$enc.pl uptests/x$font-$enc.tfm && \
    cmp $testdir/$font.tfm uptests/x$font-$enc.tfm && echo || exit 5

  ./uptftopl -kanji=$enc $testdir/$font.tfm uptests/x$font-$enc.pl && \
    if [ $enc = utf8 ]; then \
      sed -i".bak" -e "y/―~∥-¢£¬/—〜‖−¢£¬/" uptests/x$font-$enc.pl; fi && \
    diff $testdir/$font-$enc.pl uptests/x$font-$enc.pl && echo || exit 6

done
done