The attached patch skips the new getppid() test (perl/api.t) on Win32 since getppid() is unimplemented on this platform!
Use this version instead.
(I cut-and-pasted the skip code from modperl/request_rec_tie_api.t, but the Perl version is not really relevant here.)
- Steve
--- api.pm.orig 2003-10-20 09:04:16.000000000 +0100
+++ api.pm 2003-10-21 12:21:35.966680100 +0100
@@ -14,7 +14,9 @@
sub handler {
my $r = shift;
- plan $r, tests => 2;
+ plan $r, tests => 2,
+ have { "getppid() is not implemented on Win32"
+ => !($^O =~ /MSWin32/i) };
{
# 5.8.1 w/ ithreads has a bug where it caches ppid in PL_ppid,--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
