summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Maischein <corion@corion.net>2015-04-08 18:59:26 +0200
committerDavid Mitchell <davem@iabyn.com>2015-04-20 12:37:31 +0100
commitc98d1975c8646c1e632b18efa111736b5c395875 (patch)
tree78b11fcc34960ffa11be9004666d69b96ce8067a
parent47cb8ddb7c62ea1e80e4782f80bd8d616b89a44d (diff)
downloadperl-c98d1975c8646c1e632b18efa111736b5c395875.tar.gz
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.
-rw-r--r--t/porting/globvar.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/porting/globvar.t b/t/porting/globvar.t
index fd169c7442..6679c92808 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";