diff options
author | Karl Williamson <khw@cpan.org> | 2022-07-26 15:46:26 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2022-07-26 21:28:13 -0600 |
commit | 456e272f9cede0146ec974149f7c80e7073e27b9 (patch) | |
tree | 1b32f8f571ab0727be6d67c30a4ee8bd15a16cfc /t/re | |
parent | 152647ded5da729ea0d957940954f0fbc57cd7e2 (diff) | |
download | perl-456e272f9cede0146ec974149f7c80e7073e27b9.tar.gz |
regex_sets.t: Requires LC_ALL to run
Diffstat (limited to 't/re')
-rw-r--r-- | t/re/regex_sets.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/re/regex_sets.t b/t/re/regex_sets.t index 69800264e2..ca30560cc3 100644 --- a/t/re/regex_sets.t +++ b/t/re/regex_sets.t @@ -103,6 +103,7 @@ like("a", qr/(?[ (?#comment) [a]])/, "Can have (?#comments)"); if (! is_miniperl() && locales_enabled('LC_CTYPE')) { my $utf8_locale = find_utf8_ctype_locale; SKIP: { + skip("No LC_ALL on this platform", 8) unless locales_enabled('LC_ALL'); skip("No utf8 locale available on this platform", 8) unless $utf8_locale; setlocale(&POSIX::LC_ALL, "C"); |