Skip to content

Commit

Permalink
Revert "skip_all if WinXP as test hangs there"
Browse files Browse the repository at this point in the history
This reverts commit 256e470.
  • Loading branch information
bulk88 committed Dec 27, 2014
1 parent f22516c commit cbbc690
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/26fork.t
Expand Up @@ -5,10 +5,9 @@ use Test::More;
use Config;
use Inline Config => DIRECTORY => $TestInlineSetup::DIR;

if($^O =~ /MSWin32/i) {
plan skip_all => 'fork() not implemented' if $Config{useithreads} ne 'define';
plan skip_all => 'Hangs on WinXP'
if eval { require Win32; Win32::GetOSName() =~ /^WinXP/ };
if($^O =~ /MSWin32/i && $Config{useithreads} ne 'define') {
plan skip_all => 'fork() not implemented';
exit 0;
}

my $pid = fork;
Expand Down

0 comments on commit cbbc690

Please sign in to comment.