Skip Menu |

This queue is for tickets about the IPC-Run CPAN distribution.

Report information
The Basics
Id: 8624
Status: resolved
Priority: 0/
Queue: IPC-Run

People
Owner: RSOD [...] cpan.org
Requestors: steve [...] fisharerojo.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: t/pty.t hangs on OpenBSD.
The issue (I'm guessing in the kernel) that causes FreeBSD to fail in t/pty.t seems to cause similar issues on OpenBSD. Attached is a patch to prevent the test from hanging. --- t/pty.t.orig Fri Nov 26 10:04:15 2004 +++ t/pty.t Fri Nov 26 10:05:13 2004 @@ -85,7 +85,7 @@ ## Older Perls can't ok( a, qr// ), so I manually do that here. my $exp ; -my $freebsd = $^O =~ /freebsd/ ? "freebsd deadlocks on this test" : "" ; +my $freebsd = $^O =~ /freebsd/ || $^O =~ /openbsd/ ? "BSDs deadlocks on this test" : "" ; my @tests = ( ##
Thanks, this fix will be part of the next release to CPAN in 1-3 days. - R. [SMPETERS - Fri Nov 26 11:06:27 2004]: Show quoted text
> The issue (I'm guessing in the kernel) that causes FreeBSD to fail in > t/pty.t seems to cause similar issues on OpenBSD. Attached is a patch > to prevent the test from hanging. > > --- t/pty.t.orig Fri Nov 26 10:04:15 2004 > +++ t/pty.t Fri Nov 26 10:05:13 2004 > @@ -85,7 +85,7 @@ > ## Older Perls can't ok( a, qr// ), so I manually do that here. > my $exp ; > > -my $freebsd = $^O =~ /freebsd/ ? "freebsd deadlocks on this test" : > "" ; > +my $freebsd = $^O =~ /freebsd/ || $^O =~ /openbsd/ ? "BSDs deadlocks > on this test" : "" ; > > my @tests = ( > ##