From: Jarkko Hietaniemi Date: Mon, 8 Sep 2003 08:50:27 +0000 (+0000) Subject: Let's require fork for this test. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=22ad44502215bcf7b1a7461d122de6e76f42089d;p=p5sagit%2Fp5-mst-13.2.git Let's require fork for this test. p4raw-id: //depot/perl@21076 --- diff --git a/lib/perl5db/de0.t b/lib/perl5db/de0.t index d626dd4..a3ad5a7 100644 --- a/lib/perl5db/de0.t +++ b/lib/perl5db/de0.t @@ -2,10 +2,7 @@ BEGIN { require Config; import Config; - if (!$Config{'d_fork'} - # open2/3 supported on win32 (but not Borland due to CRT bugs) - && (($^O ne 'MSWin32' && $^O ne 'NetWare') || $Config{'cc'} =~ /^bcc/i)) - { + unless ($Config{d_fork}) { print "1..0\n"; exit 0; }