With fig2dev-3.2.9a, I'm getting the following error for test 8:
8: decode koi8-r encoded files FAILED (input.at:85)
The output log has this:
# -*- compilation -*-
8. input.at:72: testing decode koi8-r encoded files ...
iconv: conversion from UTF8 unsupported
iconv: try 'iconv -l' to get the list of supported encodings
./input.at:85: echo "$KYR" | $FGREP -q "$STR1" && echo "$KYR" | $FGREP -q "$STR2"
./input.at:85: exit code was 1, expected 0
8. input.at:72: 8. decode koi8-r encoded files (input.at:72): FAILED (input.at:85)
Indeed, when I manually check iconv -l, the output only lists "UTF-8" (among many other encodings, but no "UTF8".
I'm on macOS 10.14.6, and my iconv is from Fink at v1.17. The iconv that ships with the system is v1.11, and that one has this line: UTF-8 UTF8. If I edit the iconv -f UTF8 call in "testsuit" (via input.at) to use /usr/bin/iconv (or to use "UTF-8"), then the test errors out saying iconv: conversion to KOI8R unsupported. Both Fink-iconv-1.17 and system-iconv-1.11 don't know that encoding, but do know "KOI8-R CSKOI8R". Editing the "KOI8R" calls to "KOI8-R" then lets the test pass.
I note that in input.at at line 74, the encodings are called with the working name, but are named incorrectly in the other iconv commands on line 77.
Thank you, fixed with commit [40994e].
Related
Commit: [40994e]