In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/c98d1975c8646c1e632b18efa111736b5c395875?hp=47cb8ddb7c62ea1e80e4782f80bd8d616b89a44d>
- Log ----------------------------------------------------------------- commit c98d1975c8646c1e632b18efa111736b5c395875 Author: Max Maischein <[email protected]> Date: Wed Apr 8 18:59:26 2015 +0200 Skip testing for PL_warn_locale When building Perl without locale support, as it happens to be the situation on Android, that symbol is not available for exporting. So we always skip it. ----------------------------------------------------------------------- Summary of changes: t/porting/globvar.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/porting/globvar.t b/t/porting/globvar.t index fd169c7..6679c92 100644 --- a/t/porting/globvar.t +++ b/t/porting/globvar.t @@ -19,6 +19,7 @@ my %skip = map { ("PL_$_", 1) } ); $skip{PL_hash_rand_bits}= $skip{PL_hash_rand_bits_enabled}= 1; # we can be compiled without these, so skip testing them +$skip{PL_warn_locale}= 1; # we can be compiled without locales, so skip testing them my $trial = "nm globals$Config{_o} 2>&1"; -- Perl5 Master Repository
