-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
{,e}uptex: Accept extended upTeX internal encoding also in pTeX-compa…
…tible EUC/SJIS mode git-svn-id: svn://tug.org/texlive/trunk/Build/source@73271 c570f23f-e606-0410-a88d-b1316a301751
- Loading branch information
Showing
29 changed files
with
2,705 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
2025-01-02 TANAKA Takuji <[email protected]> | ||
|
||
* upkcat.test: Update tests. | ||
* euptex-widow.test, tests/eup-jchwidow.log, | ||
am/euptex.am: Add new tests for widow penalty originally | ||
written by Kitagawa-san. | ||
https://github.com/texjporg/tex-jp-build/issues/103 | ||
* COPYRIGHT: copyright year. | ||
|
||
2024-10-20 TANAKA Takuji <[email protected]> | ||
|
||
* eptex.ech, etex.ch{0,1}, fam256,ch, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#! /bin/sh -vx | ||
# Copyright 2025 Japanese TeX Development Community <[email protected]> | ||
# You may freely use, modify and/or distribute this file. | ||
|
||
BinDir=${BinDir:-.} | ||
ExeExt=${ExeExt:-} | ||
_euptex=$BinDir/euptex$ExeExt | ||
|
||
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE | ||
|
||
TEXMFCNF=$srcdir/../kpathsea;export TEXMFCNF | ||
TEXINPUTS=".;$srcdir/tests"; export TEXINPUTS | ||
TEXFONTS=".;$srcdir//tests"; export TEXFONTS | ||
TEXFORMATS=.; export TEXFORMATS | ||
|
||
# get same filename in log | ||
rm -f eup-jchwidow.* | ||
$LN_S $srcdir/uptexdir/tests/jchwidow.tex ./eup-jchwidow.tex | ||
|
||
if test ! -f ./eup-basic.tex; then | ||
cp $srcdir/tests/dump-basic.tex ./eup-basic.tex | ||
fi | ||
if test ! -f ./eup-basic.fmt; then | ||
$_euptex -ini -etex eup-basic || exit 1 | ||
fi | ||
|
||
$_euptex -fmt=eup-basic -interaction=batchmode eup-jchwidow || : | ||
|
||
sed 1d eup-jchwidow.log >eup-jchwidow.out | ||
|
||
diff $srcdir/euptexdir/tests/eup-jchwidow.log eup-jchwidow.out || exit 3 | ||
|
Oops, something went wrong.