summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-02-06 11:51:05 -0700
committerKarl Williamson <khw@cpan.org>2019-02-06 11:59:42 -0700
commit0c0c3518376d64d0be0faeacd283971b391b560a (patch)
treebf822a366c35dafd533021420ac5aac7621bd991 /t
parentab99d55b39bf5eb4c6782c9a897496188b987e3d (diff)
downloadperl-0c0c3518376d64d0be0faeacd283971b391b560a.tar.gz
t/loc_tools.pl: C.UTF-8 is a likely locale
When looking for locales on a system, try this one which seems to be getting to be available widely.
Diffstat (limited to 't')
-rw-r--r--t/loc_tools.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/loc_tools.pl b/t/loc_tools.pl
index 85fb099173..4b80ed5360 100644
--- a/t/loc_tools.pl
+++ b/t/loc_tools.pl
@@ -337,6 +337,7 @@ sub find_locales ($;$) {
my @Locale;
_trylocale("C", $categories, \@Locale, $allow_incompatible);
_trylocale("POSIX", $categories, \@Locale, $allow_incompatible);
+ _trylocale("C.UTF-8", $categories, \@Locale, $allow_incompatible);
foreach (1..16) {
_trylocale("ISO8859-$_", $categories, \@Locale, $allow_incompatible);
_trylocale("iso8859$_", $categories, \@Locale, $allow_incompatible);