summaryrefslogtreecommitdiffstats
path: root/src/tests/manconv-incomplete-char-at-eof
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/manconv-incomplete-char-at-eof')
-rwxr-xr-xsrc/tests/manconv-incomplete-char-at-eof17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tests/manconv-incomplete-char-at-eof b/src/tests/manconv-incomplete-char-at-eof
new file mode 100755
index 0000000..96f88cf
--- /dev/null
+++ b/src/tests/manconv-incomplete-char-at-eof
@@ -0,0 +1,17 @@
+#! /bin/sh
+
+# Test manconv's handling of incomplete characters at end of file.
+
+: "${srcdir=.}"
+# shellcheck source-path=SCRIPTDIR
+. "$srcdir/testlib.sh"
+
+: "${MANCONV=manconv}"
+
+init
+
+printf '\314' >"$tmpdir/1.inp" # 0xCC
+! run $MANCONV -f EUC-JP -t UTF-8//IGNORE <"$tmpdir/1.inp" >/dev/null
+report 'incomplete character at EOF' "$?"
+
+finish