diff options
author | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2023-11-24 10:57:33 +0000 |
---|---|---|
committer | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2023-11-24 10:57:33 +0000 |
commit | 315d8e3bc3955311b93346d23581533cca50b37b (patch) | |
tree | 37475cb288216f182cd5a6133cc59c20099b790f | |
parent | 7c8dc898f463ed93df5c1c5ef178b0cf31fd4fca (diff) |
uptex: Update test for Windows
git-svn-id: svn://tug.org/texlive/trunk@68955 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/uptexdir/ChangeLog | 1 | ||||
-rwxr-xr-x | Build/source/texk/web2c/uptexdir/gkhuge.test | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/uptexdir/ChangeLog b/Build/source/texk/web2c/uptexdir/ChangeLog index aa01c88c675..39b3fe94a15 100644 --- a/Build/source/texk/web2c/uptexdir/ChangeLog +++ b/Build/source/texk/web2c/uptexdir/ChangeLog @@ -6,6 +6,7 @@ * ptriptest.test, uptriptest.test: Check diffs of trip.{fot,typ} with ignoring trivial changes in trip tests. + * gkhuge.test: Update test for Windows. 2023-09-21 Hironobu Yamashita <h.y.acetaminophen@gmail.com> diff --git a/Build/source/texk/web2c/uptexdir/gkhuge.test b/Build/source/texk/web2c/uptexdir/gkhuge.test index b3d8cdc3e64..e8fe12c3de5 100755 --- a/Build/source/texk/web2c/uptexdir/gkhuge.test +++ b/Build/source/texk/web2c/uptexdir/gkhuge.test @@ -13,6 +13,14 @@ test -d uptests || mkdir -p uptests TEXMFCNF=$srcdir/../kpathsea export TEXMFCNF +DIFF="diff" +# pre-generated test results in the repository are stored in LF +# but the output might be written in CRLF on some platform. +# if 'diff --strip-trailing-cr' is available, exploit it. +# (useful for tests on win32 binaries run on MSYS shell) +$DIFF --strip-trailing-cr $0 $0 \ + && DIFF="diff --strip-trailing-cr" || echo + # Test inputs testdir=$srcdir/uptexdir/tests @@ -37,7 +45,7 @@ for font in gkhugeng; do # 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 2 + $DIFF $testdir/$font.err uptests/y$font.err && echo || exit 2 done |