diff options
Diffstat (limited to 't')
-rw-r--r-- | t/op/alarm.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/op/alarm.t b/t/op/alarm.t index c008737dff..384ee1d028 100644 --- a/t/op/alarm.t +++ b/t/op/alarm.t @@ -45,6 +45,7 @@ $diff = time - $start_time; is( $@, "ALARM!\n", 'alarm w/$SIG{ALRM} vs system()' ); { - local $TODO = 'Why does system() block alarm() on VMS?' if $^O eq 'VMS'; + local $TODO = "Why does system() block alarm() on $^O?" + if $^O eq 'VMS' || $^O eq'MacOS'; ok( abs($diff - 3) <= 1, " right time (waited $diff secs for 3-sec alarm)" ); } |