diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:49:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:49:50 +0000 |
commit | 74b60c5712f2a84904b95d008953c140a9bd5dd2 (patch) | |
tree | dd12cc58c6d4cfb5e2c1183f47757295ce3b5662 /src/tests/man-recode-suffix | |
parent | Initial commit. (diff) | |
download | man-db-74b60c5712f2a84904b95d008953c140a9bd5dd2.tar.xz man-db-74b60c5712f2a84904b95d008953c140a9bd5dd2.zip |
Adding upstream version 2.9.4.upstream/2.9.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tests/man-recode-suffix')
-rwxr-xr-x | src/tests/man-recode-suffix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tests/man-recode-suffix b/src/tests/man-recode-suffix new file mode 100755 index 0000000..c00be13 --- /dev/null +++ b/src/tests/man-recode-suffix @@ -0,0 +1,43 @@ +#! /bin/sh + +# Test man-recode's --suffix behaviour. + +: ${srcdir=.} +. "$srcdir/testlib.sh" + +: ${MAN_RECODE=man-recode} + +init + +cat >"$tmpdir/a.1.exp" <<'EOF' +.SH NAME +a \- á +EOF +cp "$tmpdir/a.1.exp" "$tmpdir/a.1" +cat >"$tmpdir/b.1.exp" <<'EOF' +'\" -*- coding: UTF-8 -*- +.SH NAME +b \- é +EOF +gzip -c <"$tmpdir/b.1.exp" >"$tmpdir/b.1.gz" +cat >"$tmpdir/c.1.exp" <<'EOF' +'\" -*- coding: UTF-8 +.SH NAME +b \- é +EOF +cat >"$tmpdir/c.1" <<'EOF' +'\" -*- coding: ISO-8859-1 +EOF +<"$tmpdir/c.1.exp" tail -n +2 | iconv -f UTF-8 -t ISO-8859-1 >>"$tmpdir/c.1" +gzip "$tmpdir/c.1" + +run $MAN_RECODE -t UTF-8 --suffix .out \ + "$tmpdir/a.1" "$tmpdir/b.1.gz" "$tmpdir/c.1.gz" +expect_pass '--suffix with no coding tag' \ + 'diff -u "$tmpdir/a.1.exp" "$tmpdir/a.1.out"' +expect_pass '--suffix with gzip and coding tag matching target encoding' \ + 'diff -u "$tmpdir/b.1.exp" "$tmpdir/b.1.out"' +expect_pass '--suffix with gzip and coding tag not matching target encoding' \ + 'diff -u "$tmpdir/c.1.exp" "$tmpdir/c.1.out"' + +finish |