In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7a258a813b64e345d010ffe1c16ce7e55e146e50?hp=7601007bbbe673d3791a2d77c692a0c377835430>

- Log -----------------------------------------------------------------
commit 7a258a813b64e345d010ffe1c16ce7e55e146e50
Author: Brian Fraser <[email protected]>
Date:   Mon Sep 2 14:07:53 2013 -0300

    t/op/for.t: Skip a test if the require for XS::APItest fails
-----------------------------------------------------------------------

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

diff --git a/t/op/for.t b/t/op/for.t
index 18fedeb..2ac0fc8 100644
--- a/t/op/for.t
+++ b/t/op/for.t
@@ -571,9 +571,9 @@ sub {
 
 SKIP: {
     skip "No XS::APItest under miniperl", 1, if is_miniperl;
+    skip "no XS::APItest", 1 if !eval { require XS::APItest };
     my @a;
     sub {
-        require XS::APItest;
         XS::APItest::alias_av(\@a, 0, undef);
         eval { \$_[0] }
     }->($a[0]);

--
Perl5 Master Repository

Reply via email to