In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/b30b43eb3f67dce6f8aa78261cf67498d56f9616?hp=1b2ebdae9234712604cd7568ffaddc71dfb881d4>

- Log -----------------------------------------------------------------
commit b30b43eb3f67dce6f8aa78261cf67498d56f9616
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 16:40:54 2016 -0700

    magic-27839.t miniperl fix-up

M       t/op/magic-27839.t

commit 8d2d13e674dc4e787198d897d40acd82a32b0ba8
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 16:40:12 2016 -0700

    incfilter.t miniperl fix-up

M       t/op/incfilter.t

commit 69db6e991d7fee57a3de6450fce23e76f8acd765
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 16:39:27 2016 -0700

    hash-rt85026.t miniperl fix-up

M       t/op/hash-rt85026.t

commit 9642b1af6c47cdac34c4d0b24b1007d82c1a230c
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 16:38:44 2016 -0700

    groups.t miniperl fix-up

M       t/op/groups.t
-----------------------------------------------------------------------

Summary of changes:
 t/op/groups.t       | 2 +-
 t/op/hash-rt85026.t | 4 +---
 t/op/incfilter.t    | 4 +++-
 t/op/magic-27839.t  | 4 +++-
 4 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/t/op/groups.t b/t/op/groups.t
index c92b61d..912b2e9 100644
--- a/t/op/groups.t
+++ b/t/op/groups.t
@@ -13,8 +13,8 @@ BEGIN {
     chdir 't' if -d 't';
     require './test.pl';
     set_up_inc( '../lib' );
+    skip_all_if_miniperl("no dynamic loading on miniperl, no POSIX");
 }
-skip_all_if_miniperl("no dynamic loading on miniperl, no POSIX");
 
 use 5.010;
 use strict;
diff --git a/t/op/hash-rt85026.t b/t/op/hash-rt85026.t
index ecd4bcd..eb9264c 100644
--- a/t/op/hash-rt85026.t
+++ b/t/op/hash-rt85026.t
@@ -4,11 +4,9 @@ BEGIN {
   chdir 't' if -d 't';
   require './test.pl';
   set_up_inc( '../lib' );
+  skip_all_without_dynamic_extension("Devel::Peek");
 }
 
-skip_all_without_dynamic_extension("Devel::Peek");
-
-
 use strict;
 use Devel::Peek;
 use File::Temp qw(tempdir);
diff --git a/t/op/incfilter.t b/t/op/incfilter.t
index 73913ba..de692de 100644
--- a/t/op/incfilter.t
+++ b/t/op/incfilter.t
@@ -6,9 +6,11 @@ BEGIN {
     chdir 't' if -d 't';
     require './test.pl';
     set_up_inc( qw(. ../lib) );
+    skip_all_if_miniperl(
+       'no dynamic loading on miniperl, no Filter::Util::Call'
+    );
 }
 
-skip_all_if_miniperl('no dynamic loading on miniperl, no Filter::Util::Call');
 skip_all_without_perlio();
 
 use strict;
diff --git a/t/op/magic-27839.t b/t/op/magic-27839.t
index d8af53f..0106e45 100644
--- a/t/op/magic-27839.t
+++ b/t/op/magic-27839.t
@@ -4,9 +4,11 @@ BEGIN {
     $SIG{__WARN__} = sub { die "Dying on warning: ", @_ };
     chdir 't' if -d 't';
     require './test.pl';
+    skip_all_if_miniperl(
+       "no dynamic loading on miniperl, no Tie::Hash::NamedCapture"
+    );
 }
 
-skip_all_if_miniperl("no dynamic loading on miniperl, no 
Tie::Hash::NamedCapture");
 plan(tests => 2);
 
 use strict;

--
Perl5 Master Repository

Reply via email to