aboutsummaryrefslogtreecommitdiff
path: root/tests/genutf8.pl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feature: Lua 5.3 + 5.4 integer support, with CI and conflicts fixed.Hisham Muhammad2024-06-111-0/+1
| | | | | | | | | | Co-Authored-By: Hisham Muhammad <hisham@gobolinux.org> Co-authored-by: Mark Pulford <mark@kyne.com.au> Co-authored-by: ichenq <ichenq@gmail.com> Co-authored-by: Cloud Wu <cloudwu@gmail.com> Co-authored-by: caijietao <t0350.prog@gmail.com> Co-authored-by: actboy168 <actboy168@gmail.com> Co-authored-by: wudeng <wudeng256@gmail.com> Co-authored-by: caiyiheng <rangercyh@qq.com>
* Silence genutf8.pl warnings across Perl versionsMark Pulford2011-12-081-14/+5
| | | | | | | - Use Perl filehandles directly since IO::Handle generates unicode warnings that can't be silenced. - Disable all warnings since the specific "nonchar" warning only exists in newer versions.
* Use Perl builtin UTF-8 support, not Text::IconvMark Pulford2011-05-161-7/+13
| | | | Remove Perl dependency on Text::Iconv to improve portability.
* Add support for perl installs outside of /usr/binMark Pulford2011-05-101-1/+2
| | | | | Change "perl -w" to "use warnings" for compatibility with systems that put all #! args into argv[1].
* Add UTF-16 surrogate pair decode supportMark Pulford2011-05-081-0/+25
- Add tests for UTF-16 decoding and failures - Add getutf8.pl to assist with UTF-16 decode testing - Re-add test_decode_cycle() which was accidentally removed earlier - Rename bytestring.dat to octets-escaped.dat