diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-17 18:36:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-17 18:36:20 +0000 |
commit | 1689481e5512794ca867be78f00013097fdd63c0 (patch) | |
tree | 8d5ddeb0f25a4d02fdaa610acbe6259904156b90 | |
parent | 6ae8f908c03a1e93786c4fa06f22a36a2a7b4a9c (diff) | |
download | perl-1689481e5512794ca867be78f00013097fdd63c0.tar.gz |
The system() vs $SIG{ARLM} is no more a todo.
p4raw-id: //depot/perl@13736
-rw-r--r-- | t/op/alarm.t | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/op/alarm.t b/t/op/alarm.t index 0dfc6611fd..12c8c264c4 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' ); |