-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e(u)ptexdir/wcfname.test: add new tests (#136)
- Loading branch information
Showing
7 changed files
with
185 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
2023-01-15 TANAKA Takuji <[email protected]> | ||
|
||
* wcfname.test, am/eptex.am: | ||
Add tests for file names with JIS X 0208 characters | ||
in `eptex --kanji-internal={euc,sjis}`. | ||
https://github.com/texjporg/tex-jp-build/issues/136 | ||
|
||
2022-12-22 Hironori Kitagawa <[email protected]> | ||
|
||
* eptex.defines: | ||
|
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,68 @@ | ||
#! /bin/sh -vx | ||
# | ||
# Copyright 2022-2023 Japanese TeX Development Community <[email protected]> | ||
# You may freely use, modify and/or distribute this file. | ||
|
||
test -d eptests || mkdir -p eptests | ||
rm -f eptests/fn*.log eptests/fn*.txt eptests/fn*.tex fn*.tex | ||
|
||
rc=0 | ||
|
||
TEXMFCNF=$srcdir/../kpathsea | ||
TEXINPUTS=eptests:. | ||
export TEXMFCNF TEXINPUTS | ||
|
||
for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do | ||
locale -a | grep $loc | ||
ret=$? | ||
if [ $ret = 0 ]; then | ||
LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE | ||
break | ||
fi | ||
done | ||
if [ $ret = 1 ]; then | ||
# linux musl fails to run `locale -a` but seems to have C.UTF-8 | ||
loc=C.UTF-8 | ||
LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE | ||
fi | ||
|
||
perl $srcdir/tests/fn-generate.perl || exit 128 | ||
mv fn*.tex eptests/ | ||
|
||
# pTeX internal encoding | ||
fenc="utf8" | ||
for ienc in euc sjis; do | ||
for doc in fn-$fenc fnさざ波-$fenc; do | ||
|
||
echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc | ||
./eptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >eptests/$doc-$ienc-term.log || rc=1 | ||
mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex eptests/ | ||
diff eptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 | ||
|
||
done | ||
done | ||
|
||
|
||
# pTeX, regacy encoding | ||
for fenc in sjis euc; do | ||
for doc in fnさざ波-$fenc; do | ||
|
||
ienc=$fenc | ||
if [ "$COMSPEC" != "" ]; then | ||
echo "*** We guess OS is Windows." | ||
if [ $fenc != euc ]; then ienc="sjis"; fi | ||
else | ||
echo "*** We guess OS is not Windows." | ||
if [ $fenc != sjis ]; then ienc="euc"; fi | ||
fi | ||
|
||
echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc | ||
./eptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >eptests/$doc-$fenc-term.log || rc=3 | ||
mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex eptests/ | ||
diff eptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 | ||
|
||
done | ||
done | ||
|
||
|
||
exit $rc |
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,10 @@ | ||
2023-01-15 TANAKA Takuji <[email protected]> | ||
|
||
* wcfname.test, am/euptex.am: | ||
Add tests for file names with JIS X 0208 & UTF-8 characters | ||
in `euptex --kanji-internal={euc,sjis,uptex}`. | ||
https://github.com/texjporg/tex-jp-build/issues/136 | ||
|
||
2022-12-22 Hironori Kitagawa <[email protected]> | ||
|
||
* euptex.defines: | ||
|
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,94 @@ | ||
#! /bin/sh -vx | ||
# | ||
# Copyright 2022-2023 Japanese TeX Development Community <[email protected]> | ||
# You may freely use, modify and/or distribute this file. | ||
|
||
test -d euptests || mkdir -p euptests | ||
rm -f euptests/fn*.log euptests/fn*.txt euptests/fn*.tex fn*.tex | ||
|
||
rc=0 | ||
|
||
TEXMFCNF=$srcdir/../kpathsea | ||
TEXINPUTS=euptests:. | ||
export TEXMFCNF TEXINPUTS | ||
|
||
for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do | ||
locale -a | grep $loc | ||
ret=$? | ||
if [ $ret = 0 ]; then | ||
LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE | ||
break | ||
fi | ||
done | ||
if [ $ret = 1 ]; then | ||
# linux musl fails to run `locale -a` but seems to have C.UTF-8 | ||
loc=C.UTF-8 | ||
LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE | ||
fi | ||
|
||
perl $srcdir/tests/fn-generate.perl || exit 128 | ||
mv fn*.tex euptests/ | ||
|
||
# upTeX internal encoding | ||
fenc="utf8" | ||
for ienc in euc sjis uptex; do | ||
for doc in fn-$fenc fnさざ波-$fenc fn£¥µÆÇñß-$fenc; do | ||
|
||
if [ $ienc != uptex -a $doc = fn£¥µÆÇñß-$fenc ]; then | ||
continue | ||
fi | ||
|
||
if [ "$COMSPEC" != "" ]; then | ||
echo "*** We guess OS is Windows." | ||
if [ $ienc = uptex ]; then | ||
command_line_encoding=utf8 | ||
export command_line_encoding | ||
else | ||
command_line_encoding=none | ||
export command_line_encoding | ||
fi | ||
fi | ||
|
||
echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc | ||
./euptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >euptests/$doc-$ienc-term.log || rc=1 | ||
mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex euptests/ | ||
diff euptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 | ||
|
||
done | ||
done | ||
|
||
|
||
# pTeX compatible mode, regacy encoding | ||
for fenc in sjis euc; do | ||
for doc in fnさざ波-$fenc; do | ||
|
||
ienc=$fenc | ||
if [ "$COMSPEC" != "" ]; then | ||
echo "*** We guess OS is Windows." | ||
if [ $fenc != euc ]; then ienc="sjis"; fi | ||
if [ $ienc = uptex ]; then | ||
command_line_encoding=utf8 | ||
export command_line_encoding | ||
else | ||
command_line_encoding=none | ||
export command_line_encoding | ||
fi | ||
else | ||
echo "*** We guess OS is not Windows." | ||
if [ $fenc != sjis ]; then ienc="euc"; fi | ||
fi | ||
if [ $ienc != uptex ]; then | ||
guess_input_kanji_encoding=1 | ||
export guess_input_kanji_encoding | ||
fi | ||
|
||
echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc | ||
./euptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >euptests/$doc-$fenc-term.log || rc=3 | ||
mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex euptests/ | ||
diff euptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 | ||
|
||
done | ||
done | ||
|
||
|
||
exit $rc |