summaryrefslogtreecommitdiff
path: root/tests/genutf8.pl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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