]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Update VPIT::TestHelpers to 6d578776
authorVincent Pit <vince@profvince.com>
Tue, 14 Apr 2015 17:07:43 +0000 (14:07 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 14 Apr 2015 17:07:43 +0000 (14:07 -0300)
And list the dependencies for the 'capture' feature in BUILD_REQUIRES.

Makefile.PL
t/lib/VPIT/TestHelpers.pm

index a4a665b8c569fef5af51d2c17607370229f0952f..4efbec5e8ca73358d5b0b2d0fbffc3df2f7732e4 100644 (file)
@@ -83,7 +83,11 @@ my %BUILD_REQUIRES = (
  'Carp'                => 0,
  'Config'              => 0,
  'ExtUtils::MakeMaker' => 0,
+ 'IO::Handle'          => 0,
+ 'IO::Select'          => 0,
+ 'IPC::Open3'          => 0,
  'POSIX'               => 0,
+ 'Socket'              => 0,
  'Test::More'          => 0,
  'lib'                 => 0,
  %PREREQ_PM,
index e8cfa710ea73aec55801f5f9fcdd03548cb8a3e8..2396cade85c2812fbf0cadcf5c3a81e1b613adde 100644 (file)
@@ -288,11 +288,19 @@ Dependencies :
 
 =item -
 
-Not VMS
+Neither VMS nor OS/2
 
 =item -
 
-L<IO::Handle>, L<IO::Select>, L<IPC::Open3>
+L<IO::Handle>
+
+=item -
+
+L<IO::Select>
+
+=item -
+
+L<IPC::Open3>
 
 =item -
 
@@ -331,7 +339,8 @@ C<CAPTURE_PERL_FAILED $details> (possibly prefixed by C<$p>)
 sub init_capture {
  my $p = sanitize_prefix(shift);
 
- skip_all 'Cannot capture output on VMS' if $^O eq 'VMS';
+ skip_all 'Cannot capture output on VMS'  if $^O eq 'VMS';
+ skip_all 'Cannot capture output on OS/2' if $^O eq 'os2';
 
  load_or_skip_all 'IO::Handle', '0', [ ];
  load_or_skip_all 'IO::Select', '0', [ ];