In perl.git, the branch blead has been updated

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

- Log -----------------------------------------------------------------
commit 1b2ebdae9234712604cd7568ffaddc71dfb881d4
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 15:42:36 2016 -0700

    getpid.t miniperl fix-up

M       t/op/getpid.t

commit 24d2c0a4c43980a45c678a1f8ef38d1a6d754448
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 15:40:59 2016 -0700

    dump.t miniperl fix-up

M       t/op/dump.t

commit 5b39eca15c2a8930c540a1abf7da340c1fce56e7
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 15:40:18 2016 -0700

    pat_advanced.t miniperl fix-up

M       t/re/pat_advanced.t

commit 5bfb366fbfd8c205fca03179148e24096ef9078c
Author: Father Chrysostomos <[email protected]>
Date:   Thu Aug 18 15:39:32 2016 -0700

    eintr.t miniperl fix-up

M       t/io/eintr.t
-----------------------------------------------------------------------

Summary of changes:
 t/io/eintr.t        | 3 +--
 t/op/dump.t         | 3 +--
 t/op/getpid.t       | 4 +++-
 t/re/pat_advanced.t | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/t/io/eintr.t b/t/io/eintr.t
index b8902de..1ec80a3 100644
--- a/t/io/eintr.t
+++ b/t/io/eintr.t
@@ -10,10 +10,9 @@ BEGIN {
     chdir 't' if -d 't';
     require './test.pl';
     set_up_inc('../lib');
+    skip_all_without_dynamic_extension('Fcntl');
 }
 
-skip_all_without_dynamic_extension('Fcntl');
-
 use warnings;
 use strict;
 use Config;
diff --git a/t/op/dump.t b/t/op/dump.t
index 0d9c548..e261db1 100644
--- a/t/op/dump.t
+++ b/t/op/dump.t
@@ -6,10 +6,9 @@ BEGIN {
     chdir 't' if -d 't';
     require './test.pl';
     set_up_inc( qw(. ../lib) );
+    skip_all_if_miniperl();
 }
 
-skip_all_if_miniperl();
-
 use Config;
 use File::Temp qw(tempdir);
 use Cwd qw(getcwd);
diff --git a/t/op/getpid.t b/t/op/getpid.t
index 6ae05fc..109edd2 100644
--- a/t/op/getpid.t
+++ b/t/op/getpid.t
@@ -6,6 +6,9 @@ BEGIN {
     chdir 't' if -d 't';
     require './test.pl';
     set_up_inc( qw(../lib) );
+    skip_all_if_miniperl(
+       "no dynamic loading on miniperl, no threads/attributes"
+    );
 }
 
 use strict;
@@ -13,7 +16,6 @@ use Config;
 
 {
     skip_all_without_config(qw(useithreads d_getppid));
-    skip_all_if_miniperl("no dynamic loading on miniperl, no threads");
     eval 'use threads; use threads::shared';
     plan tests => 3;
     if ($@) {
diff --git a/t/re/pat_advanced.t b/t/re/pat_advanced.t
index f2f9e57..5eb2cc5 100644
--- a/t/re/pat_advanced.t
+++ b/t/re/pat_advanced.t
@@ -9,8 +9,8 @@ BEGIN {
     require './test.pl';
     require './charset_tools.pl';
     set_up_inc(qw '../lib .');
-}
     skip_all_if_miniperl("miniperl can't load Tie::Hash::NamedCapture, need 
for %+ and %-");
+}
 
 use strict;
 use warnings;

--
Perl5 Master Repository

Reply via email to