Re: 9122 and sigaction/switch on HP-UX 11.00
H.Merijn Brand [Tue, 13 Mar 2001 18:41:26 +0000 (19:41 +0100)]
Message-Id: <20010313184043.BFFC.H.M.BRAND@hccnet.nl>

If the test is run non-interactively the default handler
is different.

p4raw-id: //depot/perl@9130

t/lib/sigaction.t

index cb3380b..4c9c95c 100644 (file)
@@ -43,7 +43,7 @@ my $oldaction=POSIX::SigAction->new('::bar', new POSIX::SigSet(), 0);
        if($bad) { print "not ok 1\n" } else { print "ok 1\n"}
 }
 
-if($oldaction->{HANDLER} eq 'DEFAULT')
+if($oldaction->{HANDLER} eq (-t STDIN ? 'DEFAULT' : 'IGNORE'))
   { print "ok 2\n" } else { print "not ok 2\n"}
 print $SIG{HUP} eq '::foo' ? "ok 3\n" : "not ok 3\n";