From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl -w
BEGIN {
use Config;
if ($Config{extensions} !~ /\bEncode\b/) {
print "1..0 # Skip: no Encode\n";
exit 0;
}
}
use Test::More ord("A") == 65
? (tests => 1)
: (skip_all => 'EBCDIC platform which doesnt have'
. ' "use encoding" used by open ":locale")');
BEGIN {
$SIG{__WARN__} = sub { $warn .= $_[0] };
}
# bug #41442
use open ':locale';
if ($warn !~ /Cannot find encoding/) {
if (-e '/dev/null') { open STDERR, '>', '/dev/null' }
warn "# \x{201e}\n"; # „
}
ok(1); # we got that far