@@ -593,6 +593,7 @@ SKIP:
593593 skip " didn't find a suitable non-UTF-8 locale" , 1 unless
594594 @non_utf8_locales ;
595595 my $locale = $non_utf8_locales [0];
596+ print STDERR " AAA: \$ locale: $locale \n " ;
596597
597598 fresh_perl_is(<<"EOF" , " ok\n " , {}, " cmp() handles above Latin1 and NUL in non-UTF8 locale" );
598599use locale;
@@ -614,6 +615,7 @@ SKIP:
614615{
615616 skip " didn't find a suitable UTF-8 locale" , 1 unless $utf8_ref ;
616617 my $locale = $utf8_ref -> [0];
618+ print STDERR " BBB: \$ locale: $locale \n " ;
617619
618620 fresh_perl_is(<<"EOF" , " ok\n " , {}, " Handles above Unicode in a UTF8 locale" );
619621use locale;
@@ -637,6 +639,7 @@ SKIP:
637639 skip " 32-bit ASCII platforms can't physically have extended UTF-8" , 1
638640 if $: :IS_ASCII && ! $is64bit ;
639641 my $locale = $utf8_ref -> [0];
642+ print STDERR " CCC: \$ locale: $locale \n " ;
640643
641644 fresh_perl_is(<<"EOF" , " ok\n " , {}, " cmp() handles Perl extended UTF-8" );
642645use locale;
@@ -687,6 +690,7 @@ SKIP: { # GH #20054
687690
688691 my @lc_all_locales = find_locales(' LC_ALL' );
689692 my $locale = $lc_all_locales [0];
693+ print STDERR " DDD: \$ locale: $locale \n " ;
690694 skip " LC_ALL not enabled on this platform" , 1 unless $locale ;
691695 my $fallback = ($^O eq " MSWin32" )
692696 ? " system default"
0 commit comments