From: Jarkko Hietaniemi Date: Mon, 17 Dec 2001 18:36:20 +0000 (+0000) Subject: The system() vs $SIG{ARLM} is no more a todo. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1689481e5512794ca867be78f00013097fdd63c0;p=p5sagit%2Fp5-mst-13.2.git The system() vs $SIG{ARLM} is no more a todo. p4raw-id: //depot/perl@13736 --- diff --git a/t/op/alarm.t b/t/op/alarm.t index 0dfc661..12c8c26 100644 --- a/t/op/alarm.t +++ b/t/op/alarm.t @@ -44,7 +44,4 @@ $diff = time - $start_time; # alarm time might be one second less than you said. is( $@, "ALARM!\n", 'alarm w/$SIG{ALRM} vs system()' ); -TODO: { - local $TODO = "alarm() can't stop a system call with \$SIG{ALRM} set"; - ok( $diff == 3 || $diff == 2, ' right time' ); -} +ok( $diff == 3 || $diff == 2, ' right time' );