summaryrefslogtreecommitdiff
path: root/lib/perl5db
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-09-08 08:50:27 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-09-08 08:50:27 +0000
commit22ad44502215bcf7b1a7461d122de6e76f42089d (patch)
treebc8dae8972445378d69139d90419038da9464644 /lib/perl5db
parente78280eef1d4944b27f03bb7d23ac12692f542fe (diff)
downloadperl-22ad44502215bcf7b1a7461d122de6e76f42089d.tar.gz
Let's require fork for this test.
p4raw-id: //depot/perl@21076
Diffstat (limited to 'lib/perl5db')
-rw-r--r--lib/perl5db/de0.t5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/perl5db/de0.t b/lib/perl5db/de0.t
index d626dd47be..a3ad5a7706 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;
}