diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2016-07-01 20:07:18 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2016-07-01 20:43:14 -0400 |
commit | 47918419113dff4cba30ab6146bd20044d8f0abb (patch) | |
tree | a2ff0feeb3a1dab49eef3d788c3a37fa85767388 /t/op | |
parent | 15899733e6c3ba2d82e9b5373dabc6958554975c (diff) | |
download | perl-47918419113dff4cba30ab6146bd20044d8f0abb.tar.gz |
If only miniperl, no use utf8 for you.
Diffstat (limited to 't/op')
-rw-r--r-- | t/op/tr.t | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,14 +1,18 @@ # tr.t $|=1; -use utf8; - BEGIN { chdir 't' if -d 't'; require './test.pl'; set_up_inc('../lib'); + if (is_miniperl()) { + eval 'require utf8'; + skip_all("miniperl, no 'utf8'"); + } } +use utf8; + plan tests => 164; # Test this first before we extend the stack with other operations. |