This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make pad names always UTF8
[perl5.git] / ext / XS-APItest / t / gv_autoload4.t
index 1f57437..b16a373 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 19; #31;
+use Test::More tests => 31;
 
 use_ok('XS::APItest');
 
@@ -41,7 +41,6 @@ ok $glob = XS::APItest::gv_autoload_type(\%::, $sub, 2, $method);
 ok $glob = XS::APItest::gv_autoload_type(\%::, $sub, 3, $method);
 *{$glob}{CODE}->( __PACKAGE__ . "::" . $sub, "gv_autoload_pvn() is nul-clean");
 
-=begin
 {
     use utf8;
     use open qw( :utf8 :std );
@@ -61,4 +60,3 @@ ok $glob = XS::APItest::gv_autoload_type(\%::, $sub, 3, $method);
         *{$glob}{CODE}->( "main::" . $sub, "$types[$type]() is UTF8-clean when only the stash is in UTF-8");
     }
 }
-=cut