From 47918419113dff4cba30ab6146bd20044d8f0abb Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 1 Jul 2016 20:07:18 -0400 Subject: If only miniperl, no use utf8 for you. --- t/op/tr.t | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 't/op') 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. -- cgit v1.2.1