summaryrefslogtreecommitdiff
path: root/t/op
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2016-07-01 20:07:18 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2016-07-01 20:43:14 -0400
commit47918419113dff4cba30ab6146bd20044d8f0abb (patch)
treea2ff0feeb3a1dab49eef3d788c3a37fa85767388 /t/op
parent15899733e6c3ba2d82e9b5373dabc6958554975c (diff)
downloadperl-47918419113dff4cba30ab6146bd20044d8f0abb.tar.gz
If only miniperl, no use utf8 for you.
Diffstat (limited to 't/op')
-rw-r--r--t/op/tr.t8
1 files changed, 6 insertions, 2 deletions
diff --git a/t/op/tr.t b/t/op/tr.t
index 6783dad40d..36858f42f9 100644
--- a/t/op/tr.t
+++ b/t/op/tr.t
@@ -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.