Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Unicode-Normalize /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
fcdc.t
4.94
KB
-r--r--r--
2014-12-27 11:49
form.t
2.52
KB
-r--r--r--
2014-12-27 11:48
func.t
12.19
KB
-r--r--r--
2014-12-27 11:49
illegal.t
1.79
KB
-r--r--r--
2014-12-27 11:49
norm.t
4.18
KB
-r--r--r--
2014-12-27 11:49
null.t
2.01
KB
-r--r--r--
2014-12-27 11:49
partial1.t
2.83
KB
-r--r--r--
2014-12-27 11:49
partial2.t
2.72
KB
-r--r--r--
2014-12-27 11:49
proto.t
2.46
KB
-r--r--r--
2014-12-27 11:49
split.t
3.6
KB
-r--r--r--
2014-12-27 11:49
test.t
4.53
KB
-r--r--r--
2014-12-27 11:49
tie.t
1.73
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
BEGIN { unless ('A' eq pack('U', 0x41)) { print "1..0 # Unicode::Normalize cannot pack a Unicode code point\n"; exit 0; } unless (0x41 == unpack('U', 'A')) { print "1..0 # Unicode::Normalize cannot get a Unicode code point\n"; exit 0; } } BEGIN { if ($ENV{PERL_CORE}) { chdir('t') if -d 't'; @INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib); } } ######################### use strict; use warnings; use Unicode::Normalize qw(:all); print "1..24\n"; print "ok 1\n"; # if $_ is not NULL-terminated, test may fail. $_ = compose('abc'); print /c$/ ? "ok" : "not ok", " 2\n"; $_ = decompose('abc'); print /c$/ ? "ok" : "not ok", " 3\n"; $_ = reorder('abc'); print /c$/ ? "ok" : "not ok", " 4\n"; $_ = NFD('abc'); print /c$/ ? "ok" : "not ok", " 5\n"; $_ = NFC('abc'); print /c$/ ? "ok" : "not ok", " 6\n"; $_ = NFKD('abc'); print /c$/ ? "ok" : "not ok", " 7\n"; $_ = NFKC('abc'); print /c$/ ? "ok" : "not ok", " 8\n"; $_ = FCC('abc'); print /c$/ ? "ok" : "not ok", " 9\n"; $_ = decompose("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 10\n"; $_ = decompose("\x{304B}\x{3099}abc"); print /c$/ ? "ok" : "not ok", " 11\n"; $_ = reorder("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 12\n"; $_ = reorder("\x{304B}\x{3099}abc"); print /c$/ ? "ok" : "not ok", " 13\n"; $_ = compose("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 14\n"; $_ = compose("\x{304B}\x{3099}abc"); print /c$/ ? "ok" : "not ok", " 15\n"; $_ = NFD("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 16\n"; $_ = NFC("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 17\n"; $_ = NFKD("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 18\n"; $_ = NFKC("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 19\n"; $_ = FCC("\x{304C}abc"); print /c$/ ? "ok" : "not ok", " 20\n"; $_ = getCanon(0x100); print s/.$// ? "ok" : "not ok", " 21\n"; $_ = getCompat(0x100); print s/.$// ? "ok" : "not ok", " 22\n"; $_ = getCanon(0xAC00); print s/.$// ? "ok" : "not ok", " 23\n"; $_ = getCompat(0xAC00); print s/.$// ? "ok" : "not ok", " 24\n";