In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/caab73c0a28609db91fe0e418914b450d235176f?hp=ca5a6eb827a507774780dcb8c3dfb13312436790>

- Log -----------------------------------------------------------------
commit caab73c0a28609db91fe0e418914b450d235176f
Author: Jarkko Hietaniemi <[email protected]>
Date:   Tue Jul 5 10:59:59 2016 +0300

    The 47918419 mistakenly made miniperl skippage unconditional
-----------------------------------------------------------------------

Summary of changes:
 t/op/tr.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/op/tr.t b/t/op/tr.t
index 36858f4..b50ac42 100644
--- a/t/op/tr.t
+++ b/t/op/tr.t
@@ -7,7 +7,7 @@ BEGIN {
     set_up_inc('../lib');
     if (is_miniperl()) {
        eval 'require utf8';
-        skip_all("miniperl, no 'utf8'");
+        if ($@) { skip_all("miniperl, no 'utf8'") }
     }
 }
 

--
Perl5 Master Repository

Reply via email to