In perl.git, the branch smoke-me/khw-locale has been updated <https://perl5.git.perl.org/perl.git/commitdiff/630b832d94064690cdb50186c763b3c3fcc05be7?hp=97f38c8d77f8da43690c8af0369296cd16af2964>
- Log ----------------------------------------------------------------- commit 630b832d94064690cdb50186c763b3c3fcc05be7 Author: Karl Williamson <[email protected]> Date: Wed Apr 3 16:21:18 2019 -0600 f ----------------------------------------------------------------------- Summary of changes: ext/POSIX/t/mb.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/POSIX/t/mb.t b/ext/POSIX/t/mb.t index 2f85cb9ebe..a936b36d27 100644 --- a/ext/POSIX/t/mb.t +++ b/ext/POSIX/t/mb.t @@ -24,15 +24,15 @@ plan tests => 5; use POSIX qw(); SKIP: { - skip("mblen() not present", 3) unless $Config{d_mblen}; + skip("mblen() not present", 5) unless $Config{d_mblen}; is(&POSIX::mblen("a", &POSIX::MB_CUR_MAX), 1, 'mblen() basically works'); - skip("LC_CTYPE locale support not available", 2) + skip("LC_CTYPE locale support not available", 4) unless locales_enabled('LC_CTYPE'); my $utf8_locale = find_utf8_ctype_locale(); - skip("no utf8 locale available", 3) unless $utf8_locale; + skip("no utf8 locale available", 4) unless $utf8_locale; local $ENV{LC_CTYPE} = $utf8_locale; local $ENV{LC_ALL}; -- Perl5 Master Repository
